Removed unnecessary semicolons

This commit is contained in:
P. Most 2016-05-14 22:33:25 +02:00
parent 69e0cfff72
commit db41da5ad7
4 changed files with 4 additions and 3 deletions
DroidFish
.settings
src
net/margaritov/preference/colorpicker
org/petero/droidfish/gamelogic

@ -5,4 +5,5 @@ org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6
org.eclipse.jdt.core.compiler.compliance=1.6 org.eclipse.jdt.core.compiler.compliance=1.6
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
org.eclipse.jdt.core.compiler.problem.emptyStatement=warning
org.eclipse.jdt.core.compiler.source=1.6 org.eclipse.jdt.core.compiler.source=1.6

@ -903,7 +903,7 @@ public class ColorPickerView extends View {
mValShader = null; mValShader = null;
mSatShader = null; mSatShader = null;
mHueShader = null; mHueShader = null;
mAlphaShader = null;; mAlphaShader = null;
requestLayout(); requestLayout();
} }

@ -79,7 +79,7 @@ public class Game {
ADD_LAST, ADD_LAST,
/** Remove all variations not matching the new move. */ /** Remove all variations not matching the new move. */
REPLACE REPLACE
}; }
/** Set whether new moves are entered as mainline moves or variations. */ /** Set whether new moves are entered as mainline moves or variations. */
public final void setAddFirst(AddMoveBehavior amb) { public final void setAddFirst(AddMoveBehavior amb) {

@ -59,5 +59,5 @@ public class PgnToken {
/** Change current move number. */ /** Change current move number. */
public void setCurrent(GameTree.Node node); public void setCurrent(GameTree.Node node);
}; }
} }