Back to project page android-cassowary-layout.
The source code is released under:
Apache License
If you think the Android project android-cassowary-layout listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package no.agens.cassowarylayout.util; /** * Created by alex on 08/09/2014. */ public class TimerUtil { public static long since(long since) { return (System.nanoTime() - since) / 1000000; } }