Skip to content

Commit

Permalink
Removed unused fields
Browse files Browse the repository at this point in the history
  • Loading branch information
lrozenblyum committed Dec 2, 2012
1 parent a0d88d6 commit a429511
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions src/test/java/com/leokom/chess/gui/winboard/MockCommander.java
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -5,20 +5,16 @@
* Date-time: 10.11.12 21:56 * Date-time: 10.11.12 21:56
*/ */
public class MockCommander implements WinboardCommander { public class MockCommander implements WinboardCommander {
private int finishInitCallsCount = 0;
private int enableUserMovePrefixesCount = 0;
@Override @Override
public void startInit() { public void startInit() {
} }


@Override @Override
public void enableUserMovePrefixes() { public void enableUserMovePrefixes() {
enableUserMovePrefixesCount++;
} }


@Override @Override
public void finishInit() { public void finishInit() {
finishInitCallsCount++;
} }


@Override @Override
Expand Down Expand Up @@ -73,12 +69,4 @@ public void offerDraw() {
public void resign() { public void resign() {
//To change body of implemented methods use File | Settings | File Templates. //To change body of implemented methods use File | Settings | File Templates.
} }

public int getFinishInitCallsCount() {
return finishInitCallsCount;
}

public int getEnableUserMovePrefixesCount() {
return enableUserMovePrefixesCount;
}
} }

0 comments on commit a429511

Please sign in to comment.