Skip to content

Commit

Permalink
updat
Browse files Browse the repository at this point in the history
  • Loading branch information
kymjs committed Sep 2, 2015
1 parent af4e58a commit 6f7a79c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 8 deletions.
2 changes: 1 addition & 1 deletion KJFrame/kjframe/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apply plugin: 'com.android.library'
apply plugin: 'com.jfrog.bintray'
apply plugin: 'com.github.dcendents.android-maven'

version = "2.4.2"
version = "2.4.3"

android {
compileSdkVersion 22
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -510,16 +510,13 @@ static void writeStringStringMap(Map<String, String> map, OutputStream os)
static Map<String, String> readStringStringMap(InputStream is)
throws IOException {
int size = readInt(is);
Map<String, String> result = (size == 0) ? Collections
.<String, String>emptyMap()
: new HashMap<String, String>(size);
String str = readString(is);
Map<String, String> result = (size == 0) ? Collections.<String, String>emptyMap() : new
HashMap<String, String>(size);
for (int i = 0; i < size; i++) {
String key = str.intern();
String value = str.intern();
String key = readString(is).intern();
String value = readString(is).intern();
result.put(key, value);
}
return result;
}

}
Binary file modified binrary/KJFrameForAndroid_v2.243.jar
Binary file not shown.

0 comments on commit 6f7a79c

Please sign in to comment.