diff options
author | Bruce Momjian <bruce@momjian.us> | 2001-11-19 22:43:13 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2001-11-19 22:43:13 +0000 |
commit | 6c8120d68ced229111aeb1e45cb6aa3219e1e70b (patch) | |
tree | 21d637cf5b5a33f382f6b595564205afc42c3a51 /src/interfaces/jdbc/example/threadsafe.java | |
parent | 46d50783bf16b2db28160c2b968cd6d5cd65600d (diff) | |
download | postgresql-6c8120d68ced229111aeb1e45cb6aa3219e1e70b.tar.gz postgresql-6c8120d68ced229111aeb1e45cb6aa3219e1e70b.zip |
More jdbc comment cleanups. Code looks very nice now.
Diffstat (limited to 'src/interfaces/jdbc/example/threadsafe.java')
-rw-r--r-- | src/interfaces/jdbc/example/threadsafe.java | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/interfaces/jdbc/example/threadsafe.java b/src/interfaces/jdbc/example/threadsafe.java index 2931221f181..ceb1ef8f6f5 100644 --- a/src/interfaces/jdbc/example/threadsafe.java +++ b/src/interfaces/jdbc/example/threadsafe.java @@ -7,7 +7,7 @@ import java.text.*; // rare in user code, but we use the LargeObject API in this test import org.postgresql.largeobject.*; -/** +/* * This example tests the thread safety of the driver. * * It does this by performing several queries, in different threads. Each @@ -56,7 +56,7 @@ public class threadsafe } - /** + /* * This drops the table (if it existed). No errors are reported. */ public void cleanup() @@ -80,7 +80,7 @@ public class threadsafe } } - /** + /* * This performs the example */ public void doexample() throws SQLException @@ -366,7 +366,7 @@ public class threadsafe } } - /** + /* * Display some instructions on how to run the example */ public static void instructions() @@ -376,7 +376,7 @@ public class threadsafe System.exit(1); } - /** + /* * This little lot starts the test */ public static void main(String args[]) |