Skip to content

Commit bbe75b0

Browse files
committed
Make protected.
1 parent 5813d69 commit bbe75b0

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

j2me/games/GameJ2MELibraryM/src/main/java/org/allbinary/game/displayable/canvas/DemoCanvas.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,6 @@
1212
*
1313
*/
1414
package org.allbinary.game.displayable.canvas;
15-
import org.allbinary.thread.ARunnable;
16-
1715

1816
import java.util.Hashtable;
1917
import java.util.Vector;
@@ -174,7 +172,7 @@ public class DemoCanvas extends RunnableCanvas
174172
private final InputToGameKeyMapping inputToGameKeyMapping =
175173
PlatformInputMappingFactory.getInstance().getPersistentInputMappingInstance().getInputMapping();
176174

177-
private GameRunnable gameRunnable = NullWaitGameRunnable.getInstance();
175+
protected GameRunnable gameRunnable = NullWaitGameRunnable.getInstance();
178176

179177
public DemoCanvas(final AbeClientInformationInterface abeClientInformation,
180178
final CommandListener commandListener,

j2me/games/GameJ2MELibraryM/src/main/java/org/allbinary/game/displayable/canvas/StartCanvas.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ public class StartCanvas extends RunnableCanvas
152152
private final InputToGameKeyMapping inputToGameKeyMapping =
153153
PlatformInputMappingFactory.getInstance().getPersistentInputMappingInstance().getInputMapping();
154154

155-
private GameRunnable gameRunnable = NullWaitGameRunnable.getInstance();
155+
protected GameRunnable gameRunnable = NullWaitGameRunnable.getInstance();
156156

157157
private PaintableInterface progressPaintable = ProgressCanvasFactory.getLazyInstance();
158158

0 commit comments

Comments
 (0)