From 46fb81636c84ad5fc4007e567f2d82ddb4394567 Mon Sep 17 00:00:00 2001 From: "Marc G. Fournier" Date: Sun, 1 Nov 1998 16:55:02 +0000 Subject: Remove various files that were moved to various subdirectories... Requested by: Peter T Mount peter@retep.org.uk --- src/interfaces/jdbc/postgresql/PGtokenizer.java | 100 ------------------------ 1 file changed, 100 deletions(-) delete mode 100644 src/interfaces/jdbc/postgresql/PGtokenizer.java (limited to 'src/interfaces/jdbc/postgresql/PGtokenizer.java') diff --git a/src/interfaces/jdbc/postgresql/PGtokenizer.java b/src/interfaces/jdbc/postgresql/PGtokenizer.java deleted file mode 100644 index d41bfef5a0c..00000000000 --- a/src/interfaces/jdbc/postgresql/PGtokenizer.java +++ /dev/null @@ -1,100 +0,0 @@ -/** - * - * This class is used to tokenize the text output of postgres. - * - */ - -package postgresql; - -import java.sql.*; -import java.util.*; - -public class PGtokenizer -{ - protected Vector tokens; - - public PGtokenizer(String string,char delim) - { - tokenize(string,delim); - } - - /** - * Tokenizes a new string - */ - public int tokenize(String string,char delim) - { - tokens = new Vector(); - - int nest=0,p,s; - for(p=0,s=0;p");} - public void removeAngle() {remove("<",">");} -} -- cgit v1.2.3