Skip to content

Commit 2b09e78

Browse files
authored
Merge pull request #581 from splitio/FME-4395-fix-tracker-warning
fixed tracker warning
2 parents 16b227d + 02fce9d commit 2b09e78

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

client/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@
176176
<dependency>
177177
<groupId>com.google.code.gson</groupId>
178178
<artifactId>gson</artifactId>
179-
<version>2.9.0</version>
179+
<version>2.13.1</version>
180180
</dependency>
181181
<dependency>
182182
<groupId>org.yaml</groupId>

client/src/main/java/io/split/client/events/EventsSender.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
import java.net.URISyntaxException;
1313
import java.util.List;
1414

15-
import static com.google.gson.internal.$Gson$Preconditions.checkNotNull;
15+
import static com.google.gson.internal.GsonPreconditions.checkNotNull;
1616

1717
public class EventsSender {
1818

client/src/main/java/io/split/client/events/InMemoryEventsStorage.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
import java.util.concurrent.BlockingQueue;
1313
import java.util.concurrent.LinkedBlockingQueue;
1414

15-
import static com.google.gson.internal.$Gson$Preconditions.checkNotNull;
15+
import static com.google.gson.internal.GsonPreconditions.checkNotNull;
1616

1717
public class InMemoryEventsStorage implements EventsStorage{
1818

client/src/main/java/io/split/client/impressions/UniqueKeysTrackerImp.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ private void sendUniqueKeys(){
117117
}
118118
try {
119119
if (uniqueKeysTracker.size() == 0) {
120-
_log.warn("The Unique Keys Tracker is empty");
120+
_log.debug("The Unique Keys Tracker is empty");
121121
return;
122122
}
123123
HashMap<String, HashSet<String>> uniqueKeysHashMap = popAll();

0 commit comments

Comments
 (0)