Skip to content

Commit

Permalink
Upgrade netty to 4.1.5.Final (#547)
Browse files Browse the repository at this point in the history
  • Loading branch information
NiteshKant authored Aug 31, 2016
1 parent 7f57b71 commit f918e0e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#
netty_version=4.1.0.Final
netty_version=4.1.5.Final
slf4j_version=1.7.6
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ protected static String selectSubprotocol(String requestedSubprotocols, String[]
return null;
}

String[] requestedSubprotocolArray = StringUtil.split(requestedSubprotocols, ',');
String[] requestedSubprotocolArray = requestedSubprotocols.split(",");

for (String p: requestedSubprotocolArray) {
String requestedSubprotocol = p.trim();
Expand Down

0 comments on commit f918e0e

Please sign in to comment.