We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a32e21d commit 3622654Copy full SHA for 3622654
1 file changed
analytics/src/main/java/com/segment/analytics/internal/AnalyticsClient.java
@@ -91,7 +91,7 @@ public static AnalyticsClient create(
91
new AtomicBoolean(false));
92
}
93
94
- AnalyticsClient(
+ public AnalyticsClient(
95
BlockingQueue<Message> messageQueue,
96
HttpUrl uploadUrl,
97
SegmentService service,
@@ -134,11 +134,11 @@ public void run() {
134
135
136
/**
137
- * Creating GSON object everytime we check the size seems costly, create one static instance
+ * Creating GSON object everytime we check the size seems costly
138
*
139
- * @return static gson instance
+ * @return gson instance
140
*/
141
- public static Gson getGsonInstance() {
+ public Gson getGsonInstance() {
142
if (gsonInstance == null) {
143
gsonInstance = new Gson();
144
0 commit comments