Github user jdanekrh commented on a diff in the pull request: https://github.com/apache/qpid-proton-j/pull/18#discussion_r225101483 --- Diff: proton-j/src/main/java/org/apache/qpid/proton/engine/impl/ssl/SslEngineFacadeFactory.java --- @@ -256,7 +256,7 @@ private static void removeSSLv3Support(final SSLEngine engine) { List<String> allowedProtocols = new ArrayList<String>(enabledProtocols); allowedProtocols.remove(SSLV3_PROTOCOL); - engine.setEnabledProtocols(allowedProtocols.toArray(new String[allowedProtocols.size()])); + engine.setEnabledProtocols(allowedProtocols.toArray(new String[0])); --- End diff -- ok, this is not really helpful...
--- --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@qpid.apache.org For additional commands, e-mail: dev-h...@qpid.apache.org