From 2d4e22f7a9f68013f8ad78c0fcb64d9e07834f34 Mon Sep 17 00:00:00 2001 From: AShiningRay Date: Sat, 7 Dec 2024 15:59:20 -0300 Subject: [PATCH] Ticker: Make its constructor public. City Race for the nokia 3410 won't be able to access it otherwise, so now it has moved to "Playable" from "Not Booting". --- src/javax/microedition/lcdui/Ticker.java | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/javax/microedition/lcdui/Ticker.java b/src/javax/microedition/lcdui/Ticker.java index 761a521a..8a5c625f 100644 --- a/src/javax/microedition/lcdui/Ticker.java +++ b/src/javax/microedition/lcdui/Ticker.java @@ -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; }