Skip to content
This repository was archived by the owner on Nov 24, 2018. It is now read-only.

Fixed isAnonymus return Values #29

Merged
merged 2 commits into from
Jan 21, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions src/main/java/me/checkium/vhackapi/console/ScannedNode.java
Original file line number Diff line number Diff line change
Expand Up @@ -110,8 +110,7 @@ public Integer getMoney() {

public Boolean isAnonymous() {
if (!success) return null;
if (anonymous.equals("YES")) return true;
return null;
return "YES".equals(anonymous);
}


Expand Down