Skip to content

Commit e9d4828

Browse files
committed
fix: instance variable removed
1 parent 140ce73 commit e9d4828

File tree

1 file changed

+2
-4
lines changed
  • src/main/java/com/code/advancedsql/query

1 file changed

+2
-4
lines changed

src/main/java/com/code/advancedsql/query/Query.java

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@
1111

1212
public abstract class Query<T extends IQuery> implements IQuery {
1313

14-
protected ISQL sql = null;
14+
protected ISQL sql;
1515

16-
protected String table = null;
16+
protected String table;
1717

1818
protected List<Object> execute = new ArrayList<>();
1919

@@ -23,8 +23,6 @@ public abstract class Query<T extends IQuery> implements IQuery {
2323

2424
protected int limit = 0;
2525

26-
private T instance;
27-
2826
public Query(ITable table) {
2927
this.sql = table.getSQL();
3028

0 commit comments

Comments
 (0)