Skip to content

Commit

Permalink
Merged in MAW016/holographlibrary-1/MAW016/edit-to-avoid-conflict-138…
Browse files Browse the repository at this point in the history
…4720614469 (pull request Androguide#2)


Edit to avoid conflict
  • Loading branch information
MAW016 committed Nov 17, 2013
2 parents 9b5ee75 + a348a58 commit f8ca5c5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions HoloGraphLibrary/src/com/echo/holographlibrary/Bar.java
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,10 @@ public void setValue(float value) {

public String getValueString()
{
if (mValueString == null) {
return String.valueOf(mValue);
} else {
if (mValueString != null) {
return mValueString;
} else {
return String.valueOf(mValue);
}
}

Expand Down

0 comments on commit f8ca5c5

Please sign in to comment.