Skip to content

Commit 1f36734

Browse files
author
Karl Rieb
committed
Fix TestNG dependency that was mistakenly updated. Remove last reference to BABEL.
1 parent cb79d8e commit 1f36734

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ dependencies {
7676
compileOnly 'com.squareup.okhttp:okhttp:2.7.5'
7777
compileOnly 'com.google.android:android:4.1.1.4'
7878

79-
testCompile 'org.testng:testng:6.9.11'
79+
testCompile 'org.testng:testng:6.9.10'
8080
testCompile 'org.mockito:mockito-core:1.10.19'
8181
testCompile 'org.openjdk.jmh:jmh-core:1.12'
8282
testCompile 'org.openjdk.jmh:jmh-generator-annprocess:1.12'

proguard/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ repositories {
2929
dependencies {
3030
//compile group: 'com.dropbox.core', name: 'dropbox-core-sdk', version: '0-SNAPSHOT', changing: true
3131
compile rootProject
32-
compile 'org.testng:testng:6.9.11'
32+
compile 'org.testng:testng:6.9.10'
3333
}
3434

3535
compileJava {

src/main/java/com/dropbox/core/ApiErrorResponse.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ public ApiErrorResponse<T> deserialize(JsonParser p) throws IOException, JsonPar
5757
if ("error".equals(field)) {
5858
error = errSerializer.deserialize(p);
5959
} else if ("user_message".equals(field)) {
60-
userMessage = LocalizedText.BABEL_SERIALIZER.deserialize(p);
60+
userMessage = LocalizedText.STONE_SERIALIZER.deserialize(p);
6161
} else {
6262
skipValue(p);
6363
}

src/main/java/com/dropbox/core/LocalizedText.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ public String toString() {
6363
/**
6464
* For internal use only.
6565
*/
66-
static final StoneSerializer<LocalizedText> BABEL_SERIALIZER = new StoneSerializer<LocalizedText>() {
66+
static final StoneSerializer<LocalizedText> STONE_SERIALIZER = new StoneSerializer<LocalizedText>() {
6767
@Override
6868
public void serialize(LocalizedText value, JsonGenerator g) throws IOException, JsonGenerationException {
6969
throw new UnsupportedOperationException("Error wrapper serialization not supported.");

0 commit comments

Comments
 (0)