Skip to content

Commit f918e0e

Browse files
authored
Upgrade netty to 4.1.5.Final (#547)
1 parent 7f57b71 commit f918e0e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@
1313
# See the License for the specific language governing permissions and
1414
# limitations under the License.
1515
#
16-
netty_version=4.1.0.Final
16+
netty_version=4.1.5.Final
1717
slf4j_version=1.7.6

rxnetty-http/src/main/java/io/reactivex/netty/protocol/http/ws/server/WebSocketHandshaker.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ protected static String selectSubprotocol(String requestedSubprotocols, String[]
7373
return null;
7474
}
7575

76-
String[] requestedSubprotocolArray = StringUtil.split(requestedSubprotocols, ',');
76+
String[] requestedSubprotocolArray = requestedSubprotocols.split(",");
7777

7878
for (String p: requestedSubprotocolArray) {
7979
String requestedSubprotocol = p.trim();

0 commit comments

Comments
 (0)