Browse Source

Блять как же заебала джава

master
gsd 2 years ago
parent
commit
4ed448516b
  1. 6
      src/main/java/app/entities/other/SteamID.java

6
src/main/java/app/entities/other/SteamID.java

@ -7,7 +7,7 @@ import com.fasterxml.jackson.databind.annotation.JsonSerialize;
public class SteamID {
public String steam3;
public String steam2;
public long steam64;
public Long steam64;
public String community_url;
public long account_id;
@ -18,7 +18,7 @@ public class SteamID {
public SteamID(String steam3, String steam2, String steam64, long account_id) {
this.steam3 = steam3;
this.steam2 = steam2;
this.steam64 = Long.parseLong(steam64);
this.steam64 = Long.valueOf(steam64);
this.community_url = String.format("https://steamcommunity.com/profiles/%s", steam64);
this.account_id = account_id;
}
@ -30,7 +30,7 @@ public class SteamID {
public boolean is(SteamID steamID){
try {
if (steam64 == steamID.steam64) return true;
if (steam64.equals(steamID.steam64)) return true;
else return false;
} catch (NullPointerException err) {
throw new InvalidSteamID();

Loading…
Cancel
Save