added .process() to NoAction
This commit is contained in:
@@ -23,6 +23,7 @@ import java.io.Serializable;
|
|||||||
|
|
||||||
public abstract class NoAction implements Serializable {
|
public abstract class NoAction implements Serializable {
|
||||||
private static final long serialVersionUID = -194752850197321803L;
|
private static final long serialVersionUID = -194752850197321803L;
|
||||||
|
public abstract void process();
|
||||||
public abstract void execute();
|
public abstract void execute();
|
||||||
public abstract void purge();
|
public abstract void purge();
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -40,9 +40,9 @@ public abstract class NoErrorableAction extends NoTargetedAction {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public void execute() {
|
public void execute() {
|
||||||
NoInfluence influence;
|
this.process();
|
||||||
try {
|
try {
|
||||||
influence = this.generateTargetInfluence();
|
NoInfluence influence = this.generateTargetInfluence();
|
||||||
if (influence != null) {
|
if (influence != null) {
|
||||||
NoByteSet byteSet = influence.getByteSet(this.target);
|
NoByteSet byteSet = influence.getByteSet(this.target);
|
||||||
NoCore.addByteSet(byteSet, this.target);
|
NoCore.addByteSet(byteSet, this.target);
|
||||||
|
|||||||
@@ -41,6 +41,7 @@ public abstract class NoHandshakeAction extends NoSourcedAction {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public void execute() {
|
public void execute() {
|
||||||
|
this.process();
|
||||||
try {
|
try {
|
||||||
NoInfluence influence = this.generateTargetInfluence();
|
NoInfluence influence = this.generateTargetInfluence();
|
||||||
if (influence != null) {
|
if (influence != null) {
|
||||||
|
|||||||
@@ -41,9 +41,9 @@ public abstract class NoSourcedAction extends NoTargetedAction {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public void execute() {
|
public void execute() {
|
||||||
NoInfluence influence;
|
this.process();
|
||||||
try {
|
try {
|
||||||
influence = this.generateTargetInfluence();
|
NoInfluence influence = this.generateTargetInfluence();
|
||||||
if (influence != null) {
|
if (influence != null) {
|
||||||
NoByteSet byteSet = influence.getByteSet(this.target);
|
NoByteSet byteSet = influence.getByteSet(this.target);
|
||||||
NoCore.addByteSet(byteSet, this.target);
|
NoCore.addByteSet(byteSet, this.target);
|
||||||
|
|||||||
@@ -39,9 +39,9 @@ public abstract class NoTargetedAction extends NoAction {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public void execute() {
|
public void execute() {
|
||||||
NoInfluence influence;
|
this.process();
|
||||||
try {
|
try {
|
||||||
influence = this.generateTargetInfluence();
|
NoInfluence influence = this.generateTargetInfluence();
|
||||||
if (influence != null) {
|
if (influence != null) {
|
||||||
NoByteSet byteSet = influence.getByteSet(this.target);
|
NoByteSet byteSet = influence.getByteSet(this.target);
|
||||||
NoCore.addByteSet(byteSet, this.target);
|
NoCore.addByteSet(byteSet, this.target);
|
||||||
|
|||||||
Reference in New Issue
Block a user