1
0
Fork 0
mirror of https://bitbucket.org/akapribot/owm-japis.git synced 2025-04-29 00:38:11 -07:00

Removed JSON.org source code and added it as dependency in build.gradle, and also removed the lang parameter bug.

This commit is contained in:
Ashutosh Kumar Singh 2015-01-22 19:22:18 +05:30
parent b7562181ae
commit eac5eb95c2
19 changed files with 5 additions and 6010 deletions

View file

@ -49,7 +49,7 @@ import java.util.zip.InflaterInputStream;
* </p>
*
* @author Ashutosh Kumar Singh <me@aksingh.net>
* @version 12/19/2014
* @version 2015-01-17
* @see <a href="http://openweathermap.org/">OpenWeatherMap.org</a>
* @see <a href="http://openweathermap.org/api">OpenWeatherMap.org API</a>
* @since 2.5.0.1
@ -71,7 +71,7 @@ public class OpenWeatherMap {
private static final String PARAM_MODE = "mode=";
private static final String PARAM_UNITS = "units=";
private static final String PARAM_APPID = "appId=";
private static final String PARAM_LANG = "unit=";
private static final String PARAM_LANG = "lang=";
/*
Instance Variables
@ -623,9 +623,9 @@ public class OpenWeatherMap {
String encoding = connection.getContentEncoding();
try {
if (encoding != null && encoding.equalsIgnoreCase("gzip")) {
if (encoding != null && "gzip".equalsIgnoreCase(encoding)) {
reader = new BufferedReader(new InputStreamReader(new GZIPInputStream(connection.getInputStream())));
} else if (encoding != null && encoding.equalsIgnoreCase("deflate")) {
} else if (encoding != null && "deflate".equalsIgnoreCase(encoding)) {
reader = new BufferedReader(new InputStreamReader(new InflaterInputStream(connection.getInputStream(), new Inflater(true))));
} else {
reader = new BufferedReader(new InputStreamReader(connection.getInputStream()));