aboutsummaryrefslogtreecommitdiff
path: root/src/interfaces/jdbc/utils/CheckVersion.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/utils/CheckVersion.java
parent46d50783bf16b2db28160c2b968cd6d5cd65600d (diff)
downloadpostgresql-6c8120d68ced229111aeb1e45cb6aa3219e1e70b.tar.gz
postgresql-6c8120d68ced229111aeb1e45cb6aa3219e1e70b.zip
More jdbc comment cleanups. Code looks very nice now.
Diffstat (limited to 'src/interfaces/jdbc/utils/CheckVersion.java')
-rw-r--r--src/interfaces/jdbc/utils/CheckVersion.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/interfaces/jdbc/utils/CheckVersion.java b/src/interfaces/jdbc/utils/CheckVersion.java
index 74c40813cdb..a2438cd4f9f 100644
--- a/src/interfaces/jdbc/utils/CheckVersion.java
+++ b/src/interfaces/jdbc/utils/CheckVersion.java
@@ -1,13 +1,13 @@
package utils;
-/**
+/*
* This little app checks to see what version of JVM is being used.
* It does this by checking first the java.vm.version property, and
* if that fails, it looks for certain classes that should be present.
*/
public class CheckVersion
{
- /**
+ /*
* Check for the existence of a class by attempting to load it
*/
public static boolean checkClass(String c)
@@ -23,7 +23,7 @@ public class CheckVersion
return true;
}
- /**
+ /*
* This first checks java.vm.version for 1.1, 1.2 or 1.3.
*
* It writes jdbc1 to stdout for the 1.1.x VM.