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

Commit

Permalink
Added getter KsonBuilder in KsonPool
Browse files Browse the repository at this point in the history
  • Loading branch information
devjeonghwan committed Sep 7, 2020
1 parent 09dd7e1 commit 38692e1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .idea/gradle.xml

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

4 changes: 4 additions & 0 deletions src/main/java/com/realtimetech/kson/util/pool/KsonPool.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,10 @@ public KsonPool(KsonBuilder ksonBuilder) {
this.ksonBuilder = ksonBuilder;
}

public KsonBuilder getKsonBuilder() {
return ksonBuilder;
}

public KsonContext get() {
synchronized (contextPools) {
Thread currentThread = Thread.currentThread();
Expand Down

0 comments on commit 38692e1

Please sign in to comment.