Skip to content

Commit

Permalink
Fix compile error in bridghtnessdecode class.
Browse files Browse the repository at this point in the history
  • Loading branch information
bwssytems committed Nov 15, 2018
1 parent b6b78c4 commit df67980
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Expand Up @@ -5,7 +5,7 @@

<groupId>com.bwssystems.HABridge</groupId>
<artifactId>ha-bridge</artifactId>
<version>5.2.2RC</version>
<version>5.2.2RC2</version>
<packaging>jar</packaging>

<name>HA Bridge</name>
Expand Down
Expand Up @@ -62,7 +62,7 @@ public static String replaceIntensityValue(String request, int intensity, boolea
if(intensity > 0 && intensity < 5)
percentBrightness = 1;
else
percentBrightness = (int) Math.round(intensity / 255.0 * 100)
percentBrightness = (int) Math.round(intensity / 255.0 * 100);
} else {
decimalBrightness = (float) 0.0;
percentBrightness = 0;
Expand Down

0 comments on commit df67980

Please sign in to comment.