Skip to content

Commit

Permalink
Merge pull request #185 from MinWooJin/mwjin/fix_bop_incr
Browse files Browse the repository at this point in the history
FIX: asyncBopIncr,asyncBopDecr command initial range problem
  • Loading branch information
jhpark816 authored May 29, 2019
2 parents 8e2c0a2 + 2d16db9 commit 729dd25
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ public String stringify() {
StringBuilder b = new StringBuilder();
b.append(by);

if (initial > 0) b.append(" ").append(initial);
if (initial >= 0) b.append(" ").append(initial);
if (elementFlag != null) b.append(" ").append(getElementFlagByHex());

str = b.toString();
Expand Down

0 comments on commit 729dd25

Please sign in to comment.