Skip to content

Commit

Permalink
Ticker: Make its constructor public.
Browse files Browse the repository at this point in the history
City Race for the nokia 3410 won't be able to access it otherwise,
so now it has moved to "Playable" from "Not Booting".
  • Loading branch information
AShiningRay committed Dec 7, 2024
1 parent 4434f67 commit 2d4e22f
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/javax/microedition/lcdui/Ticker.java
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,7 @@ public class Ticker

private String text;

Ticker(String str)
{
text = str;
}
public Ticker(String str) { setString(str); }

public String getString() { return text; }

Expand Down

0 comments on commit 2d4e22f

Please sign in to comment.