Skip to content

Commit

Permalink
tweak broken Eclipse handling of some indentations
Browse files Browse the repository at this point in the history
  • Loading branch information
halgoogle committed Jun 7, 2011
1 parent ffd8e3e commit 5e307c5
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ public boolean dispatchEvent(Component component, String id, String eventName,
Object[] args) {
Log.i(LOG_KEY,
String.format("dispatchEvent called: %s, %s, %s",
id, eventName, component.toString()));
id, eventName, component.toString()));
if (component.equals(button1) && eventName.equals("Click")) {
button1WasClicked();
return true;
Expand Down Expand Up @@ -142,9 +142,9 @@ public void checkCount() {
showCount();
if (clickCount == 6) {
notifier.ShowMessageDialog(
"No more button clicks for you!",
"Too many clicks",
"Start over");
"No more button clicks for you!",
"Too many clicks",
"Start over");
clickCount = 0;
showCount();
}
Expand Down

0 comments on commit 5e307c5

Please sign in to comment.