aboutsummaryrefslogtreecommitdiff
path: root/src/interfaces/jdbc/example/psql.java
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2001-11-19 23:16:46 +0000
committerBruce Momjian <bruce@momjian.us>2001-11-19 23:16:46 +0000
commit09634eafe15e2c63bddcea104e36f27367bd2fa7 (patch)
tree4ee3c30059c3edc23bd18ef6babbc8b89dcc4f0a /src/interfaces/jdbc/example/psql.java
parent6c8120d68ced229111aeb1e45cb6aa3219e1e70b (diff)
downloadpostgresql-09634eafe15e2c63bddcea104e36f27367bd2fa7.tar.gz
postgresql-09634eafe15e2c63bddcea104e36f27367bd2fa7.zip
Indent jdbc case labels using pgjindent.
Diffstat (limited to 'src/interfaces/jdbc/example/psql.java')
-rw-r--r--src/interfaces/jdbc/example/psql.java3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/interfaces/jdbc/example/psql.java b/src/interfaces/jdbc/example/psql.java
index 697198ce3a6..a5af214d574 100644
--- a/src/interfaces/jdbc/example/psql.java
+++ b/src/interfaces/jdbc/example/psql.java
@@ -50,7 +50,7 @@ public class psql
// Now the main loop.
int tt = 0, lineno = 1;
while (tt != StreamTokenizer.TT_EOF && ! done)
- { // done added by CWJ to permit \q command
+ {
System.out.print("[" + lineno + "] ");
System.out.flush();
@@ -72,7 +72,6 @@ public class psql
System.out.println("Now closing the connection");
st.close();
db.close();
-
}
/*