Fix merge
This commit is contained in:
@ -4,22 +4,13 @@
|
||||
|
||||
package net.sourceforge.pmd.lang.plsql.ast;
|
||||
|
||||
import net.sourceforge.pmd.annotation.InternalApi;
|
||||
|
||||
public class ASTFetchStatement extends AbstractPLSQLNode {
|
||||
public final class ASTFetchStatement extends AbstractPLSQLNode {
|
||||
private boolean bulkcollect;
|
||||
private boolean limit;
|
||||
|
||||
@Deprecated
|
||||
@InternalApi
|
||||
public ASTFetchStatement(int id) {
|
||||
super(id);
|
||||
}
|
||||
|
||||
@Deprecated
|
||||
@InternalApi
|
||||
public ASTFetchStatement(PLSQLParser p, int id) {
|
||||
super(p, id);
|
||||
ASTFetchStatement(int id) {
|
||||
super(id);
|
||||
}
|
||||
|
||||
void setBulkCollect(boolean bulkcollect) {
|
||||
|
@ -4,26 +4,16 @@
|
||||
|
||||
package net.sourceforge.pmd.lang.plsql.ast;
|
||||
|
||||
import net.sourceforge.pmd.annotation.InternalApi;
|
||||
|
||||
public class ASTSqlStatement extends AbstractPLSQLNode {
|
||||
public final class ASTSqlStatement extends AbstractPLSQLNode {
|
||||
|
||||
private Type type;
|
||||
|
||||
public enum Type { COMMIT, ROLLBACK, SAVEPOINT, SET_TRANSACTION, LOCK_TABLE, MERGE }
|
||||
|
||||
@Deprecated
|
||||
@InternalApi
|
||||
public ASTSqlStatement(int id) {
|
||||
ASTSqlStatement(int id) {
|
||||
super(id);
|
||||
}
|
||||
|
||||
@Deprecated
|
||||
@InternalApi
|
||||
public ASTSqlStatement(PLSQLParser p, int id) {
|
||||
super(p, id);
|
||||
}
|
||||
|
||||
void setType(Type type) {
|
||||
this.type = type;
|
||||
}
|
||||
|
Reference in New Issue
Block a user