diff options
| author | 2009-06-10 22:08:37 +0200 | |
|---|---|---|
| committer | 2009-06-10 22:08:37 +0200 | |
| commit | a4a309027c57bfc7a3ad5992ba0e34f24dafd9b3 (patch) | |
| tree | ba305d5a557c11d1130681b74ff7caabf6111671 | |
| parent | bdf78247d69936b10f81f7254a24ca443e3a4285 (diff) | |
Removed usage of tabs for indention
| -rw-r--r-- | core/java/android/app/Notification.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/core/java/android/app/Notification.java b/core/java/android/app/Notification.java index f222640877a3..ea9c936fc397 100644 --- a/core/java/android/app/Notification.java +++ b/core/java/android/app/Notification.java @@ -460,9 +460,9 @@ public class Notification implements Parcelable sb.append(this.vibrate[i]); sb.append(','); } - if (N != -1) { - sb.append(this.vibrate[N]); - } + if (N != -1) { + sb.append(this.vibrate[N]); + } sb.append("]"); } else if ((this.defaults & DEFAULT_VIBRATE) != 0) { sb.append("default"); |