aboutsummaryrefslogtreecommitdiff
path: root/src/interfaces/jdbc/example/psql.java
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2001-11-19 23:19:21 +0000
committerBruce Momjian <bruce@momjian.us>2001-11-19 23:19:21 +0000
commit28e92b89f49bef7989131a356dc24c524bcff51a (patch)
treebbfe5e9fee5b99724dc9f99471fadbae1a79264e /src/interfaces/jdbc/example/psql.java
parent0dfe913803794e7c299fe961a7ded520415a868a (diff)
downloadpostgresql-28e92b89f49bef7989131a356dc24c524bcff51a.tar.gz
postgresql-28e92b89f49bef7989131a356dc24c524bcff51a.zip
Change 'return ;' to 'return;'; remove space.
Diffstat (limited to 'src/interfaces/jdbc/example/psql.java')
-rw-r--r--src/interfaces/jdbc/example/psql.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/interfaces/jdbc/example/psql.java b/src/interfaces/jdbc/example/psql.java
index a5af214d574..05932937279 100644
--- a/src/interfaces/jdbc/example/psql.java
+++ b/src/interfaces/jdbc/example/psql.java
@@ -82,7 +82,7 @@ public class psql
if (line.startsWith("\\"))
{
processSlashCommand(line);
- return ;
+ return;
}
boolean type = st.execute(line);