Unused import pruning.
This commit is contained in:
@@ -21,7 +21,6 @@
|
|||||||
package com.samskivert.jdbc.depot;
|
package com.samskivert.jdbc.depot;
|
||||||
|
|
||||||
import java.sql.SQLException;
|
import java.sql.SQLException;
|
||||||
import java.util.ArrayList;
|
|
||||||
import java.util.HashMap;
|
import java.util.HashMap;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
|
|||||||
@@ -32,8 +32,6 @@ import com.samskivert.jdbc.JDBCUtil;
|
|||||||
import com.samskivert.jdbc.depot.clause.QueryClause;
|
import com.samskivert.jdbc.depot.clause.QueryClause;
|
||||||
import com.samskivert.jdbc.depot.clause.SelectClause;
|
import com.samskivert.jdbc.depot.clause.SelectClause;
|
||||||
|
|
||||||
import static com.samskivert.jdbc.depot.Log.log;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The implementation of {@link DepotRepository#find) functionality.
|
* The implementation of {@link DepotRepository#find) functionality.
|
||||||
*/
|
*/
|
||||||
|
|||||||
@@ -21,7 +21,6 @@
|
|||||||
package com.samskivert.jdbc.depot;
|
package com.samskivert.jdbc.depot;
|
||||||
|
|
||||||
import java.sql.Connection;
|
import java.sql.Connection;
|
||||||
import java.sql.PreparedStatement;
|
|
||||||
import java.sql.ResultSet;
|
import java.sql.ResultSet;
|
||||||
import java.sql.SQLException;
|
import java.sql.SQLException;
|
||||||
import java.sql.Statement;
|
import java.sql.Statement;
|
||||||
|
|||||||
@@ -25,7 +25,6 @@ import com.samskivert.jdbc.depot.operator.SQLOperator.BinaryOperator;
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* A convenient container for implementations of arithmetic operators. Classes that value brevity
|
* A convenient container for implementations of arithmetic operators. Classes that value brevity
|
||||||
* over disambiguation will import Arithmetic.* and construct queries with Add() and Sub(); classes
|
|
||||||
* that feel otherwise will use Arithmetic.Add() and Arithmetic.Sub().
|
* that feel otherwise will use Arithmetic.Add() and Arithmetic.Sub().
|
||||||
*/
|
*/
|
||||||
public abstract class Arithmetic
|
public abstract class Arithmetic
|
||||||
|
|||||||
@@ -30,7 +30,6 @@ import com.samskivert.jdbc.depot.expression.SQLExpression;
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* A convenient container for implementations of conditional operators. Classes that value brevity
|
* A convenient container for implementations of conditional operators. Classes that value brevity
|
||||||
* over disambiguation will import Conditionals.* and construct queries with Equals() and In();
|
|
||||||
* classes that feel otherwise will use Conditionals.Equals() and Conditionals.In().
|
* classes that feel otherwise will use Conditionals.Equals() and Conditionals.In().
|
||||||
*/
|
*/
|
||||||
public abstract class Conditionals
|
public abstract class Conditionals
|
||||||
|
|||||||
@@ -28,7 +28,6 @@ import com.samskivert.jdbc.depot.expression.SQLExpression;
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* A convenient container for implementations of logical operators. Classes that value brevity
|
* A convenient container for implementations of logical operators. Classes that value brevity
|
||||||
* over disambiguation will import Logic.* and construct queries with And() and Not(); classes that
|
|
||||||
* feel otherwise will use Logic.And() and Logic.Not().
|
* feel otherwise will use Logic.And() and Logic.Not().
|
||||||
*/
|
*/
|
||||||
public abstract class Logic
|
public abstract class Logic
|
||||||
|
|||||||
@@ -31,7 +31,6 @@ import java.io.StringWriter;
|
|||||||
import java.lang.annotation.Annotation;
|
import java.lang.annotation.Annotation;
|
||||||
import java.lang.reflect.Field;
|
import java.lang.reflect.Field;
|
||||||
import java.lang.reflect.Modifier;
|
import java.lang.reflect.Modifier;
|
||||||
import java.lang.reflect.Type;
|
|
||||||
|
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.HashSet;
|
import java.util.HashSet;
|
||||||
|
|||||||
Reference in New Issue
Block a user