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

Commit 6866ecb9 authored by Chung-yih Wang's avatar Chung-yih Wang Committed by Android Git Automerger
Browse files

am 1d62c773: Fix the build

Merge commit '1d62c773' into gingerbread-plus-aosp

* commit '1d62c773':
  Fix the build
parents e7b92260 1d62c773
Loading
Loading
Loading
Loading
+41 −41
Original line number Diff line number Diff line
@@ -1038,6 +1038,15 @@ public final class SipService extends ISipService.Stub {
            return toString();
        }

        private String showTime(long time) {
            int ms = (int) (time % 1000);
            int s = (int) (time / 1000);
            int m = s / 60;
            s %= 60;
            return String.format("%d.%d.%d", m, s, ms);
        }
    }

    private static class MyEvent {
        int mPeriod;
        int mMaxPeriod;
@@ -1079,13 +1088,4 @@ public final class SipService extends ISipService.Stub {
            return (this == that);
        }
    }

        private static String showTime(long time) {
            int ms = (int) (time % 1000);
            int s = (int) (time / 1000);
            int m = s / 60;
            s %= 60;
            return String.format("%d.%d.%d", m, s, ms);
        }
    }
}