Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a826f33e authored by Jesse Vincent's avatar Jesse Vincent
Browse files

find src/com/fsck/ -name \*.java|xargs astyle --style=ansi

--mode=java --indent-switches --indent=spaces=4 --convert-tabs
--unpad=paren
parent 96b93f73
Loading
Loading
Loading
Loading
+39 −27
Original line number Diff line number Diff line
@@ -4645,19 +4645,31 @@ public class MessagingController implements Runnable

                switch (account.getVibratePattern())
                {
                    case 1: src = pattern1; break;
                    case 2: src = pattern2; break;
                    case 3: src = pattern3; break;
                    case 4: src = pattern4; break;
                    case 5: src = pattern5; break;
                    case 1:
                        src = pattern1;
                        break;
                    case 2:
                        src = pattern2;
                        break;
                    case 3:
                        src = pattern3;
                        break;
                    case 4:
                        src = pattern4;
                        break;
                    case 5:
                        src = pattern5;
                        break;
                    default:
                        notif.defaults |= Notification.DEFAULT_VIBRATE;
                        break;
                }

                if (src != null) {
                if (src != null)
                {
                    long[] dest = new long[src.length * times];
                    for (int n = 0; n < times; n++) {
                    for (int n = 0; n < times; n++)
                    {
                        System.arraycopy(src, 0, dest, n * src.length, src.length);
                    }
                    notif.vibrate = dest;
+18 −18

File changed.

Contains only whitespace changes.

+1 −1

File changed.

Contains only whitespace changes.

+1 −1

File changed.

Contains only whitespace changes.

+3 −3

File changed.

Contains only whitespace changes.

+27 −27

File changed.

Contains only whitespace changes.

+2 −2

File changed.

Contains only whitespace changes.

+1 −1

File changed.

Contains only whitespace changes.

+1 −1

File changed.

Contains only whitespace changes.

+2 −2

File changed.

Contains only whitespace changes.

+1 −1

File changed.

Contains only whitespace changes.

+57 −57

File changed.

Contains only whitespace changes.

Loading