System.out cleanup
This commit is contained in:
@@ -15,7 +15,6 @@ public class TestAddReceipt extends NoInfluence {
|
||||
@Override
|
||||
public void applyTo(NoUser user) {
|
||||
TestNoUser test = (TestNoUser) user;
|
||||
System.out.println("Applying " + receipt + " to " + test.getUsername());
|
||||
test.addReceipt(receipt);
|
||||
}
|
||||
|
||||
|
||||
@@ -5,7 +5,6 @@ import java.security.PublicKey;
|
||||
import nodash.exceptions.NoCannotGetInfluenceException;
|
||||
import nodash.models.NoInfluence;
|
||||
import nodash.models.noactiontypes.NoErrorableAction;
|
||||
import nodash.models.noactiontypes.NoSourcedAction;
|
||||
|
||||
public class TestRequestFunds extends NoErrorableAction {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@@ -22,7 +22,6 @@ public class TestSendFundsReceipted extends NoHandshakeAction {
|
||||
|
||||
@Override
|
||||
protected NoInfluence generateTargetInfluence() throws NoCannotGetInfluenceException {
|
||||
System.out.println("Added influence to source.");
|
||||
return new TestIncreaseMoneyReceipted(this.source, fundsToSend);
|
||||
}
|
||||
|
||||
|
||||
@@ -17,7 +17,6 @@ public class TestSendReceipt extends NoTargetedAction {
|
||||
|
||||
@Override
|
||||
protected NoInfluence generateTargetInfluence() throws NoCannotGetInfluenceException {
|
||||
System.out.println("Adding receipt influence: " + receipt);
|
||||
return new TestAddReceipt(receipt);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user