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

Commit 1d62c773 authored by Chung-yih Wang's avatar Chung-yih Wang
Browse files

Fix the build

Change-Id: I410e2fd057b68e1b5b5b33ee10178a01d3c9b2fa
parent b9605886
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);
        }
    }
}