Skip to content

Commit

Permalink
naming fixes. Camel case for data objets
Browse files Browse the repository at this point in the history
  • Loading branch information
Axier Fernandez committed Jun 20, 2017
1 parent a672b42 commit 4275982
Show file tree
Hide file tree
Showing 322 changed files with 5,292 additions and 5,805 deletions.
Binary file modified .DS_Store
Binary file not shown.

This file was deleted.

This file was deleted.

2,505 changes: 0 additions & 2,505 deletions HttpUrlConnection_AsyncTask/.idea/workspace.xml

This file was deleted.

62 changes: 0 additions & 62 deletions OkHttp_AsyncTask/.idea/misc.xml

This file was deleted.

2,520 changes: 0 additions & 2,520 deletions OkHttp_AsyncTask/.idea/workspace.xml

This file was deleted.

Binary file added anko-asynchronous-tasks/.DS_Store
Binary file not shown.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Large diffs are not rendered by default.

File renamed without changes.
36 changes: 36 additions & 0 deletions anko-asynchronous-tasks/anko-asynchronous-tasks.iml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
<?xml version="1.0" encoding="UTF-8"?>
<module external.linked.project.id="anko-asynchronous-tasks" external.linked.project.path="$MODULE_DIR$" external.root.project.path="$MODULE_DIR$" external.system.id="GRADLE" type="JAVA_MODULE" version="4">
<component name="FacetManager">
<facet type="java-gradle" name="Java-Gradle">
<configuration>
<option name="BUILD_FOLDER_PATH" value="$MODULE_DIR$/build" />
<option name="BUILDABLE" value="false" />
</configuration>
</facet>
<facet type="kotlin-language" name="Kotlin">
<configuration version="2" platform="JVM 1.6" useProjectSettings="false">
<compilerSettings />
<compilerArguments>
<option name="jvmTarget" value="1.6" />
<option name="languageVersion" value="1.1" />
<option name="apiVersion" value="1.1" />
<option name="pluginClasspaths">
<array />
</option>
<option name="coroutinesWarn" value="true" />
<option name="pluginOptions">
<array />
</option>
</compilerArguments>
</configuration>
</facet>
</component>
<component name="NewModuleRootManager" LANGUAGE_LEVEL="JDK_1_7" inherit-compiler-output="true">
<exclude-output />
<content url="file://$MODULE_DIR$">
<excludeFolder url="file://$MODULE_DIR$/.gradle" />
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
</component>
</module>
Binary file added anko-asynchronous-tasks/app/.DS_Store
Binary file not shown.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Binary file added anko-asynchronous-tasks/app/src/.DS_Store
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ open class WeatherDeserializer : JsonDeserializer<WeatherObject> {
wheather.main = jsonWeatherArray.asJsonObject.get("main").asString
wheather.description = jsonWeatherArray.asJsonObject.get("description").asString
wheather.temp = jsonMainObj.get("temp").asFloat
wheather.temp_Max = jsonMainObj.get("temp_max").asFloat
wheather.temp_Min = jsonMainObj.get("temp_min").asFloat
wheather.tempMax = jsonMainObj.get("temp_max").asFloat
wheather.tempMin = jsonMainObj.get("temp_min").asFloat
wheather.humidity = jsonMainObj.get("humidity").asInt
wind.speed = jsonWindObj.get("speed").asFloat
wind.deg = jsonWindObj.get("deg").asFloat
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ class WeatherObject {
var main: String = ""
var description: String = ""
var temp: Float = 0.0f
var temp_Max: Float = 0.0f
var temp_Min: Float = 0.0f
var tempMax: Float = 0.0f
var tempMin: Float = 0.0f
var humidity: Int = 0
var wind: WindObject? = null

Expand All @@ -21,8 +21,8 @@ class WeatherObject {
"Main ${main}\n" +
"description ${description}\n" +
"temp ${temp}\n" +
"temp_Max ${temp_Max}\n" +
"temp_Min ${temp_Min}\n" +
"temp_Max ${tempMax}\n" +
"temp_Min ${tempMin}\n" +
"humidity ${humidity}\n" +
"wind ${wind.toString()}"

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

File renamed without changes.
Loading

0 comments on commit 4275982

Please sign in to comment.