Skip to content
This repository has been archived by the owner on Feb 16, 2022. It is now read-only.

Commit

Permalink
Merge pull request #19 from StaticDefault/master
Browse files Browse the repository at this point in the history
Fix error.
  • Loading branch information
StaticDefaultTester2 authored Nov 4, 2019
2 parents 844becf + 28e2a85 commit e2bac08
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ task fatJar(type: Jar) {
}

dependencies {
compile 'com.github.realtimetech-solution:reflection:0.1.2'
compile 'com.github.realtimetech-solution:reflection:0.2.1'
}

jar {
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/realtimetech/kson/KsonContext.java
Original file line number Diff line number Diff line change
Expand Up @@ -570,7 +570,7 @@ public Object addFromObjectStack(Object object) throws SerializeException {
this.jsonStack.reset();
this.working = false;
} else {
result = this.createAtFromObject(false, Object.class, object);
result = this.createAtFromObject(true, Object.class, object);
}

return result;
Expand Down

0 comments on commit e2bac08

Please sign in to comment.