Skip to content

Commit b46b0b6

Browse files
committed
Merge pull request AsyncHttpClient#140 from dustismo/patch-1
missing semi colon
2 parents ed98538 + 219ef7b commit b46b0b6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ which is something you want to do for large responses: this way you can process
114114
@Override
115115
public STATE onBodyPartReceived(HttpResponseBodyPart bodyPart) throws Exception {
116116
bytes.write(bodyPart.getBodyPartBytes());
117-
return STATE.CONTINUE
117+
return STATE.CONTINUE;
118118
}
119119

120120
@Override

0 commit comments

Comments
 (0)