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/psql.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/psql.java')
-rw-r--r-- | src/interfaces/jdbc/example/psql.java | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/interfaces/jdbc/example/psql.java b/src/interfaces/jdbc/example/psql.java index b3fd308cd7b..697198ce3a6 100644 --- a/src/interfaces/jdbc/example/psql.java +++ b/src/interfaces/jdbc/example/psql.java @@ -4,7 +4,7 @@ import java.io.*; import java.sql.*; import java.text.*; -/** +/* * This example application demonstrates some of the drivers other features * by implementing a simple psql replacement in Java. * @@ -75,7 +75,7 @@ public class psql } - /** + /* * This processes a statement */ public void processLine(String line) throws SQLException @@ -117,7 +117,7 @@ public class psql } } - /** + /* * This displays a result set. * Note: it closes the result once complete. */ @@ -147,7 +147,7 @@ public class psql rs.close(); } - /** + /* * This process / commands (for now just /d) */ public void processSlashCommand(String line) throws SQLException @@ -197,7 +197,7 @@ public class psql private static final String usrSequences[] = {"SEQUENCE"}; private static final String sysTables[] = {"SYSTEM TABLE", "SYSTEM INDEX"}; - /** + /* * Display some instructions on how to run the example */ public static void instructions() @@ -207,7 +207,7 @@ public class psql System.exit(1); } - /** + /* * This little lot starts the test */ public static void main(String args[]) |