Skip to content

Commit cbb5fd5

Browse files
committed
Update RelationshipExtraction.java
1 parent 81e80b5 commit cbb5fd5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/com/ibm/watson/developer_cloud/relationship_extraction/v1/RelationshipExtraction.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,9 +106,9 @@ public void setDataset(final Dataset dataset) {
106106
* @param returnType the new returnType
107107
*/
108108
public void setReturnType(final ReturnType returnType) {
109-
if (returnType == REReturnType.XML) {
109+
if (returnType == ReturnType.XML) {
110110
this.returnType = "xml";
111-
} else if (returnType == REReturnType.JSON) {
111+
} else if (returnType == ReturnType.JSON) {
112112
this.returnType = "json";
113113
}
114114
}

0 commit comments

Comments
 (0)