Archiviert
1
0

Fixing indentation

Dieser Commit ist enthalten in:
Lixfel 2020-02-10 13:42:40 +01:00
Ursprung ec7d1c34d2
Commit ce7507dd15

Datei anzeigen

@ -23,7 +23,7 @@ public class PollAnswer {
}
public static PollAnswer get(int userID){
ResultSet rs = SQL.select("SELECT * FROM PollAnswer WHERE UserID = ? AND Question = ?", userID, PollSystem.getQuestion());
ResultSet rs = SQL.select("SELECT * FROM PollAnswer WHERE UserID = ? AND Question = ?", userID, PollSystem.getQuestion());
try {
if(!rs.next())
return new PollAnswer(userID, PollSystem.getQuestion());