We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 140ce73 commit e9d4828Copy full SHA for e9d4828
src/main/java/com/code/advancedsql/query/Query.java
@@ -11,9 +11,9 @@
11
12
public abstract class Query<T extends IQuery> implements IQuery {
13
14
- protected ISQL sql = null;
+ protected ISQL sql;
15
16
- protected String table = null;
+ protected String table;
17
18
protected List<Object> execute = new ArrayList<>();
19
@@ -23,8 +23,6 @@ public abstract class Query<T extends IQuery> implements IQuery {
23
24
protected int limit = 0;
25
26
- private T instance;
27
-
28
public Query(ITable table) {
29
this.sql = table.getSQL();
30
0 commit comments