|
|
@ -34,8 +34,6 @@ public class Games { |
|
|
|
while (resultSet.next()) { |
|
|
|
String gameName = resultSet.getString("Game_Name"); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
result += gameName + ", "; |
|
|
|
|
|
|
|
} |
|
|
@ -687,8 +685,6 @@ public class Games { |
|
|
|
boolean spikeChun = false; |
|
|
|
boolean bandaiNamco = false; |
|
|
|
boolean activision = false; |
|
|
|
boolean whileSwitchOne = true; |
|
|
|
boolean whileSwitchTwo = true; |
|
|
|
|
|
|
|
try { |
|
|
|
Connection connection = DriverManager.getConnection(databaseURL); |
|
|
@ -701,8 +697,8 @@ public class Games { |
|
|
|
String gamePublisherJp = resultSet.getString("Game_Publisher_JP"); |
|
|
|
String gamePublisherNa = resultSet.getString("Game_Publisher_NA"); |
|
|
|
|
|
|
|
while (whileSwitchOne) { |
|
|
|
while (whileSwitchTwo) { |
|
|
|
while (true) { |
|
|
|
while (true) { |
|
|
|
if (sega && gamePublisherEu.equals("Sega")) { |
|
|
|
break; |
|
|
|
} else if (atlus && gamePublisherEu.equals("Atlus")) { |
|
|
@ -846,8 +842,6 @@ public class Games { |
|
|
|
|
|
|
|
result += gamePublisherNa + ", "; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
statement.close(); |
|
|
|
connection.close(); |
|
|
@ -1016,7 +1010,7 @@ public class Games { |
|
|
|
|
|
|
|
if (gameReleaseAu == null) { |
|
|
|
|
|
|
|
result += gameName + ", "; |
|
|
|
result += gameName + ", "; |
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|