System.out cleanup

This commit is contained in:
Dave
2015-07-05 22:14:16 +02:00
parent c7596effeb
commit 6bc466954e
4 changed files with 0 additions and 4 deletions

View File

@@ -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);
}

View File

@@ -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;

View File

@@ -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);
}

View File

@@ -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);
}