Skip to content

Commit 8fec52c

Browse files
committed
Removed some debugging text in simulator.
1 parent 1e67166 commit 8fec52c

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

GoogleMaps/src/com/codename1/googlemaps/MapContainer.java

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -245,13 +245,15 @@ private void ready(Runnable r) {
245245
if (r == null) {
246246
return;
247247
}
248+
248249
synchronized(onReady) {
249250
onReady.add(r);
250251
}
251252
}
252253
}
253254

254255
private void waitForReady() {
256+
//System.out.println("Waiting for ready");
255257
int ctr = 0;
256258
while (bridge == null) {
257259
if (ctr++ > 500) {
@@ -262,7 +264,10 @@ private void waitForReady() {
262264
public void run() {
263265
try {
264266
Thread.sleep(20);
265-
} catch (Exception ex){}
267+
//System.out.println("Finished sleeping 20-");
268+
} catch (Exception ex){
269+
Log.e(ex);
270+
}
266271
}
267272

268273
});

0 commit comments

Comments
 (0)