Change limit back to 100

This commit is contained in:
misaochan 2016-08-26 18:55:37 +12:00
parent a0ea2a09b9
commit 6b2af436d9

View file

@ -34,7 +34,7 @@ public class NearbyPlaces {
int counter = 0;
//while ((line = in.readLine()) != null) {
while (in.readLine() != null && counter < 500) {
while (in.readLine() != null && counter < 100) {
line = in.readLine();
counter++;