OSDN Git Service

CleanUp
authorjruesga <jorge@ruesga.com>
Sun, 21 Oct 2012 17:42:52 +0000 (19:42 +0200)
committerjruesga <jorge@ruesga.com>
Sun, 21 Oct 2012 17:42:52 +0000 (19:42 +0200)
src/com/cyanogenmod/explorer/ExplorerApplication.java
src/com/cyanogenmod/explorer/console/shell/ShellConsole.java

index 8acdb18..50601d4 100644 (file)
@@ -57,7 +57,7 @@ public final class ExplorerApplication extends Application {
     //Static resources
     private static ExplorerApplication sApp;
     private static ConsoleHolder sBackgroundConsole;
-    
+
     private static boolean sDebuggable = false;
 
     private final BroadcastReceiver mOnSettingChangeReceiver = new BroadcastReceiver() {
@@ -215,7 +215,7 @@ public final class ExplorerApplication extends Application {
 
     /**
      * Method that returns if the application is debuggable
-     * 
+     *
      * @return boolean If the application is debuggable
      */
     public static boolean isDebuggable() {
@@ -247,7 +247,7 @@ public final class ExplorerApplication extends Application {
 
     /**
      * Method that allocate a new background console
-     * 
+     *
      * @param ctx The current context
      */
     private static synchronized void allocBackgroundConsole(Context ctx) {
index 43cc23d..3837b8e 100644 (file)
@@ -71,7 +71,7 @@ public abstract class ShellConsole extends Console implements Program.ProgramLis
     private static final String TAG = "ShellConsole"; //$NON-NLS-1$
 
     // A timeout of 5 seconds should be enough for no-debugging environments
-    private static final long DEFAULT_TIMEOUT = 
+    private static final long DEFAULT_TIMEOUT =
             ExplorerApplication.isDebuggable() ? 20000L : 5000L;
 
     private static final int DEFAULT_BUFFER = 512;