Skip to content

Commit 6f5d551

Browse files
committed
Add analytics support.
1 parent 39e45d4 commit 6f5d551

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

cloudinary-core/src/main/java/com/cloudinary/utils/Analytics.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,4 +111,4 @@ private String reverseVersion(String SDKSemver) throws Exception {
111111
}
112112
return StringUtils.join(StringUtils.reverseStringArray(versionArray), ".");
113113
}
114-
}
114+
}

cloudinary-core/src/test/java/com/cloudinary/analytics/AnalyticsTest.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ public class AnalyticsTest {
1414

1515
@Before
1616
public void setUp() {
17-
System.out.println("Running " + this.getClass().getName() + "." + currentTest.getMethodName());
1817
this.cloudinary = new Cloudinary("cloudinary://a:b@test123?load_strategies=false");
1918
}
2019

@@ -83,4 +82,4 @@ public void tearDown() {
8382
cloudinary.analytics = null;
8483
}
8584

86-
}
85+
}

java_shared.gradle

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ sourceCompatibility = 1.7
22
targetCompatibility = 1.7
33

44
javadoc {
5-
failOnError false
65
options.encoding = 'UTF-8'
76
}
87

@@ -39,4 +38,4 @@ tasks.withType(Test) {
3938

4039
tasks.withType(JavaCompile) {
4140
options.encoding = 'UTF-8'
42-
}
41+
}

0 commit comments

Comments
 (0)