diff options
| author | Chris Lu <chris.lu@gmail.com> | 2021-02-04 21:02:54 -0800 |
|---|---|---|
| committer | Chris Lu <chris.lu@gmail.com> | 2021-02-04 21:02:54 -0800 |
| commit | 42e5ef4b0150d339befedb06f6ed23a6c9890296 (patch) | |
| tree | 473bb4dbeef437587040780a83ab3799ba17891c /other | |
| parent | 9fa7977714d99e546cee32e02b5f7fdf3528078b (diff) | |
| download | seaweedfs-42e5ef4b0150d339befedb06f6ed23a6c9890296.tar.xz seaweedfs-42e5ef4b0150d339befedb06f6ed23a6c9890296.zip | |
Java: adjust examples
Diffstat (limited to 'other')
| -rw-r--r-- | other/java/examples/src/main/java/com/seaweedfs/examples/ExampleReadFile.java (renamed from other/java/examples/src/main/java/com/seaweedfs/examples/UnzipFile.java) | 2 | ||||
| -rw-r--r-- | other/java/examples/src/main/java/com/seaweedfs/examples/ExampleWatchFileChanges.java (renamed from other/java/examples/src/main/java/com/seaweedfs/examples/WatchFiles.java) | 2 | ||||
| -rw-r--r-- | other/java/examples/src/main/java/com/seaweedfs/examples/ExampleWriteFile.java (renamed from other/java/examples/src/main/java/com/seaweedfs/examples/WriteFile.java) | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/other/java/examples/src/main/java/com/seaweedfs/examples/UnzipFile.java b/other/java/examples/src/main/java/com/seaweedfs/examples/ExampleReadFile.java index 12eab1a2c..bd73df802 100644 --- a/other/java/examples/src/main/java/com/seaweedfs/examples/UnzipFile.java +++ b/other/java/examples/src/main/java/com/seaweedfs/examples/ExampleReadFile.java @@ -9,7 +9,7 @@ import java.io.InputStream; import java.util.zip.ZipEntry; import java.util.zip.ZipInputStream; -public class UnzipFile { +public class ExampleReadFile { public static void main(String[] args) throws IOException { diff --git a/other/java/examples/src/main/java/com/seaweedfs/examples/WatchFiles.java b/other/java/examples/src/main/java/com/seaweedfs/examples/ExampleWatchFileChanges.java index e489cb3b1..72c572d31 100644 --- a/other/java/examples/src/main/java/com/seaweedfs/examples/WatchFiles.java +++ b/other/java/examples/src/main/java/com/seaweedfs/examples/ExampleWatchFileChanges.java @@ -7,7 +7,7 @@ import java.io.IOException; import java.util.Date; import java.util.Iterator; -public class WatchFiles { +public class ExampleWatchFileChanges { public static void main(String[] args) throws IOException { diff --git a/other/java/examples/src/main/java/com/seaweedfs/examples/WriteFile.java b/other/java/examples/src/main/java/com/seaweedfs/examples/ExampleWriteFile.java index b0bd54997..228a3c0b7 100644 --- a/other/java/examples/src/main/java/com/seaweedfs/examples/WriteFile.java +++ b/other/java/examples/src/main/java/com/seaweedfs/examples/ExampleWriteFile.java @@ -9,7 +9,7 @@ import java.io.InputStream; import java.util.zip.ZipEntry; import java.util.zip.ZipInputStream; -public class WriteFile { +public class ExampleWriteFile { public static void main(String[] args) throws IOException { |
