Clean up some unused import warnings in the example jdbc code

This commit is contained in:
Barry Lind 2003-09-09 11:24:04 +00:00
parent 2fab616866
commit 62b53accd4
7 changed files with 2 additions and 9 deletions

View File

@ -1,6 +1,5 @@
package example;
import java.io.*;
import java.sql.*;
import java.util.*;

View File

@ -2,11 +2,10 @@ package example;
import java.io.*;
import java.sql.*;
import java.text.*;
/*
*
* $Id: basic.java,v 1.13 2002/09/06 21:23:05 momjian Exp $
* $Id: basic.java,v 1.14 2003/09/09 11:24:04 barry Exp $
*
* This example tests the basic components of the JDBC driver, and shows
* how even the simplest of queries can be implemented.

View File

@ -2,7 +2,6 @@ package example;
import java.io.*;
import java.sql.*;
import java.text.*;
/*
* This example tests the various date styles that are available to postgresql.

View File

@ -2,7 +2,6 @@ package example;
import java.io.*;
import java.sql.*;
import java.text.*;
/*
* This example application is not really an example. It actually performs

View File

@ -2,7 +2,6 @@ package example;
import java.io.*;
import java.sql.*;
import java.text.*;
/*
* This example application demonstrates some of the drivers other features

View File

@ -2,7 +2,6 @@ package example;
import java.io.*;
import java.sql.*;
import java.text.*;
// rare in user code, but we use the LargeObject API in this test
import org.postgresql.largeobject.*;
@ -106,7 +105,7 @@ public class threadsafe
// will yield as long as either of the children are still running
System.out.println("Waiting for threads to run");
while (thread1.isAlive() || thread2.isAlive() || thread3.isAlive())
thread0.yield();
Thread.yield();
}
finally
{

View File

@ -4,7 +4,6 @@ import org.postgresql.test.TestUtil;
import java.sql.Connection;
import java.sql.ResultSet;
import java.sql.Statement;
import java.sql.SQLException;
import junit.framework.TestCase;