Skip to content

Commit

Permalink
Update Device.java (#246)
Browse files Browse the repository at this point in the history
  • Loading branch information
arifBurakDemiray authored Feb 22, 2024
1 parent 812c14a commit bb3d889
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions sdk-java/src/main/java/ly/count/sdk/java/internal/Device.java
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,10 @@ public class Device {
private Boolean online;
private Boolean muted;
private Log L;

/**
* One second in nanoseconds
*/
protected static final Double NS_IN_SECOND = 1_000_000_000.0d;
protected static final Double NS_IN_MS = 1_000_000.0d;
protected static final Double MS_IN_SECOND = 1000d;
Expand All @@ -44,10 +48,6 @@ public void setLog(Log L) {
this.L = L;
}

/**
* One second in nanoseconds
*/

/**
* Get operation system name
*
Expand Down

0 comments on commit bb3d889

Please sign in to comment.