Skip to content

Commit 8f24d99

Browse files
committed
Merge pull request vx#98 from jklein24/master
Fix a few style errors.
2 parents 3627d32 + dc9b1cf commit 8f24d99

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

src/org/connectbot/ConsoleActivity.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -516,7 +516,7 @@ public boolean onScroll(MotionEvent e1, MotionEvent e2, float distanceX, float d
516516

517517
View flip = findCurrentView(R.id.console_flip);
518518
if(flip == null) return false;
519-
TerminalView terminal = (TerminalView)flip;
519+
TerminalView terminal = (TerminalView) flip;
520520

521521
// estimate how many rows we have scrolled through
522522
// accumulate distance that doesn't trigger immediate scroll

src/org/connectbot/service/TerminalKeyListener.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -487,16 +487,16 @@ public void sendEscape() {
487487

488488
public void sendTab() {
489489
try {
490-
bridge.transport.write(0x09);
491-
} catch (IOException e) {
492-
Log.e(TAG, "Problem while trying to send TAB press.", e);
490+
bridge.transport.write(0x09);
491+
} catch (IOException e) {
492+
Log.e(TAG, "Problem while trying to send TAB press.", e);
493493
try {
494494
bridge.transport.flush();
495495
} catch (IOException ioe) {
496496
Log.d(TAG, "Our transport was closed, dispatching disconnect event");
497497
bridge.dispatchDisconnect(false);
498498
}
499-
}
499+
}
500500
}
501501

502502
/**

0 commit comments

Comments
 (0)