We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 812c14a commit bb3d889Copy full SHA for bb3d889
sdk-java/src/main/java/ly/count/sdk/java/internal/Device.java
@@ -29,6 +29,10 @@ public class Device {
29
private Boolean online;
30
private Boolean muted;
31
private Log L;
32
+
33
+ /**
34
+ * One second in nanoseconds
35
+ */
36
protected static final Double NS_IN_SECOND = 1_000_000_000.0d;
37
protected static final Double NS_IN_MS = 1_000_000.0d;
38
protected static final Double MS_IN_SECOND = 1000d;
@@ -44,10 +48,6 @@ public void setLog(Log L) {
44
48
this.L = L;
45
49
}
46
50
47
- /**
- * One second in nanoseconds
- */
-
51
/**
52
* Get operation system name
53
*
0 commit comments