Overpass API: fix deprecated call

This commit is contained in:
Emux 2016-09-17 10:58:02 +03:00
parent 7427624275
commit 319a1b6663

View File

@ -1,5 +1,6 @@
/* /*
* Copyright 2013 Hannes Janetzek * Copyright 2013 Hannes Janetzek
* Copyright 2016 devemux86
* *
* This file is part of the OpenScienceMap project (http://www.opensciencemap.org). * This file is part of the OpenScienceMap project (http://www.opensciencemap.org).
* *
@ -14,7 +15,6 @@
* You should have received a copy of the GNU Lesser General Public License along with * You should have received a copy of the GNU Lesser General Public License along with
* this program. If not, see <http://www.gnu.org/licenses/>. * this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
package org.oscim.utils.overpass; package org.oscim.utils.overpass;
import com.fasterxml.jackson.core.JsonFactory; import com.fasterxml.jackson.core.JsonFactory;
@ -173,7 +173,7 @@ public class OverpassAPIReader {
public void parse(InputStream in) throws IOException { public void parse(InputStream in) throws IOException {
JsonFactory jsonFactory = new JsonFactory(); JsonFactory jsonFactory = new JsonFactory();
try { try {
JsonParser jp = jsonFactory.createJsonParser(in); JsonParser jp = jsonFactory.createParser(in);
JsonToken t; JsonToken t;
while ((t = jp.nextToken()) != null) { while ((t = jp.nextToken()) != null) {