summaryrefslogtreecommitdiff
path: root/src/interfaces/jdbc/example/datestyle.java
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2001-11-19 22:43:13 +0000
committerBruce Momjian <bruce@momjian.us>2001-11-19 22:43:13 +0000
commit6c8120d68ced229111aeb1e45cb6aa3219e1e70b (patch)
tree21d637cf5b5a33f382f6b595564205afc42c3a51 /src/interfaces/jdbc/example/datestyle.java
parent46d50783bf16b2db28160c2b968cd6d5cd65600d (diff)
More jdbc comment cleanups. Code looks very nice now.
Diffstat (limited to 'src/interfaces/jdbc/example/datestyle.java')
-rw-r--r--src/interfaces/jdbc/example/datestyle.java12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/interfaces/jdbc/example/datestyle.java b/src/interfaces/jdbc/example/datestyle.java
index 53908c8c2fa..6e503552b70 100644
--- a/src/interfaces/jdbc/example/datestyle.java
+++ b/src/interfaces/jdbc/example/datestyle.java
@@ -4,7 +4,7 @@ import java.io.*;
import java.sql.*;
import java.text.*;
-/**
+/*
* This example tests the various date styles that are available to postgresql.
*
* To use this example, you need a database to be in existence. This example
@@ -64,7 +64,7 @@ public class datestyle
}
- /**
+ /*
* This drops the table (if it existed). No errors are reported.
*/
public void cleanup()
@@ -79,7 +79,7 @@ public class datestyle
}
}
- /**
+ /*
* This initialises the database for this example
*/
public void init() throws SQLException
@@ -108,7 +108,7 @@ public class datestyle
}
- /**
+ /*
* This performs the example
*/
public void doexample() throws SQLException
@@ -150,7 +150,7 @@ public class datestyle
}
}
- /**
+ /*
* Display some instructions on how to run the example
*/
public static void instructions()
@@ -160,7 +160,7 @@ public class datestyle
System.exit(1);
}
- /**
+ /*
* This little lot starts the test
*/
public static void main(String args[])