Skip to content

Commit

Permalink
fix line wrap
Browse files Browse the repository at this point in the history
  • Loading branch information
jpbempel committed Jan 21, 2020
1 parent ffa4d38 commit 48bbe41
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main/java/org/datadog/jmxfetch/Instance.java
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,8 @@ public Instance(
}

Object emptyDefaultHostnameObj = this.instanceMap.get("empty_default_hostname");
this.emptyDefaultHostname = emptyDefaultHostnameObj != null ? (Boolean) emptyDefaultHostnameObj : false;
this.emptyDefaultHostname =
emptyDefaultHostnameObj != null ? (Boolean) emptyDefaultHostnameObj : false;

this.lastCollectionTime = 0;
this.lastRefreshTime = 0;
Expand Down

0 comments on commit 48bbe41

Please sign in to comment.