Фикс (переменная result пустая была)

This commit is contained in:
sasha0552 2019-04-07 20:34:59 +06:00
parent 8ff2aea83f
commit f5f85a861a

View file

@ -66,7 +66,7 @@ public UUID usernameToUUID(String username) throws IOException {
conn.setRequestMethod("GET");
rd = new BufferedReader(new InputStreamReader(conn.getInputStream()));
while ((line = rd.readLine()) != null) {
// Пусто
result += line;
}
rd.close();
} catch (Exception e) {
@ -89,7 +89,7 @@ public String uuidToUsername(UUID uuid) throws IOException {
conn.setRequestMethod("GET");
rd = new BufferedReader(new InputStreamReader(conn.getInputStream()));
while ((line = rd.readLine()) != null) {
// Пусто
result += line;
}
rd.close();
} catch (Exception e) {