OSDN Git Service

Remove trailing whitespace.
[android-x86/dalvik.git] / hit / src / com / android / hit / StackFrame.java
index a40f607..2ae7f32 100644 (file)
@@ -21,7 +21,7 @@ public class StackFrame {
     public static final int UNKNOWN_LOCATION        =   -1;
     public static final int COMPILED_METHOD         =   -2;
     public static final int NATIVE_METHOD           =   -3;
-    
+
     long mId;
     String mMethodName;
     String mSignature;
@@ -29,7 +29,7 @@ public class StackFrame {
     int mSerialNumber;
     int mLineNumber;
 
-    public StackFrame(long id, String method, String sig, String file, 
+    public StackFrame(long id, String method, String sig, String file,
             int serial, int line) {
         mId = id;
         mMethodName = method;
@@ -45,16 +45,16 @@ public class StackFrame {
             case UNKNOWN_LOCATION:  return "Unknown line number";
             case COMPILED_METHOD:   return "Compiled method";
             case NATIVE_METHOD:     return "Native method";
-            
+
             default:                return String.valueOf(mLineNumber);
         }
     }
 
     public final String toString() {
-        return mMethodName 
-            + mSignature.replace('/', '.') 
-            + " - " 
-            + mFilename + ":" 
+        return mMethodName
+            + mSignature.replace('/', '.')
+            + " - "
+            + mFilename + ":"
             + lineNumberString();
     }
 }