mirror of
https://github.com/peterosterlund2/droidfish.git
synced 2025-04-17 09:32:45 +02:00
Removed unnecessary semicolons
This commit is contained in:
parent
69e0cfff72
commit
db41da5ad7
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);
|
||||||
};
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user