Skip to content

Commit e08c74e

Browse files
committed
Update README.md.
1 parent be47256 commit e08c74e

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

README.md

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -391,8 +391,6 @@ public void getMap() throws IOException {
391391
392392
try {
393393
jsonEncoder.writeValue(map, getResponse().getOutputStream());
394-
} finally {
395-
getResponse().flushBuffer();
396394
}
397395
}
398396
```
@@ -740,8 +738,6 @@ public void getPets(String owner) throws SQLException, IOException {
740738
jsonEncoder.writeValue(new ResultSetAdapter(resultSet), getResponse().getOutputStream());
741739
}
742740
}
743-
} finally {
744-
getResponse().flushBuffer();
745741
}
746742
}
747743
```
@@ -860,8 +856,6 @@ public void getEmployee(List<String> details) throws SQLException, IOException {
860856

861857
jsonEncoder.writeValue(resultSetAdapter.next(), getResponse().getOutputStream());
862858
}
863-
} finally {
864-
getResponse().flushBuffer();
865859
}
866860
}
867861
```
@@ -1056,3 +1050,5 @@ print(fibonacci[2]); // 3
10561050
10571051
# Additional Information
10581052
This guide introduced the HTTP-RPC framework and provided an overview of its key features. For additional information, see the the [examples](https://github.com/gk-brown/HTTP-RPC/tree/master/httprpc-test/src/main/java/org/httprpc/test).
1053+
1054+
For an iOS implementation of `WebServiceProxy`, see the [Kilo](https://github.com/gk-brown/Kilo) project.

0 commit comments

Comments
 (0)