public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in www-servers/tomcat/files/5.5: 5.5.27-dynamic-JSSE13Factory.patch
@ 2008-09-17 20:19 Petteri Raty (betelgeuse)
  0 siblings, 0 replies; only message in thread
From: Petteri Raty (betelgeuse) @ 2008-09-17 20:19 UTC (permalink / raw
  To: gentoo-commits

betelgeuse    08/09/17 20:19:17

  Added:                5.5.27-dynamic-JSSE13Factory.patch
  Log:
  Remove the need for com.sun.* classes at compile time.
  (Portage version: 2.2_rc8/cvs/Linux 2.6.26-gentoo-r1 i686)

Revision  Changes    Path
1.1                  www-servers/tomcat/files/5.5/5.5.27-dynamic-JSSE13Factory.patch

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-servers/tomcat/files/5.5/5.5.27-dynamic-JSSE13Factory.patch?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-servers/tomcat/files/5.5/5.5.27-dynamic-JSSE13Factory.patch?rev=1.1&content-type=text/plain

Index: 5.5.27-dynamic-JSSE13Factory.patch
===================================================================
Index: util/java/org/apache/tomcat/util/net/jsse/JSSEImplementation.java
===================================================================
--- connectors/util/java/org/apache/tomcat/util/net/jsse/JSSEImplementation.java	(revision 696420)
+++ connectors/util/java/org/apache/tomcat/util/net/jsse/JSSEImplementation.java	(working copy)
@@ -49,27 +49,22 @@
     public JSSEImplementation() throws ClassNotFoundException {
         // Check to see if JSSE is floating around somewhere
         Class.forName(SSLSocketClass);
+        String className;
         if( JdkCompat.isJava15() ) {
-            try {
-                Class factcl = Class.forName(JSSE15Factory);
-                factory = (JSSEFactory)factcl.newInstance();
-            } catch(Exception ex) {
-                if(logger.isDebugEnabled())
-                    logger.debug("Error getting factory: " + JSSE15Factory, ex);
-            }
+            className = JSSE15Factory;
         }
-        if(factory == null && JdkCompat.isJava14() ) {
-            try {
-                Class factcl = Class.forName(JSSE14Factory);
-                factory = (JSSEFactory)factcl.newInstance();
-            } catch(Exception ex) {
-                if(logger.isDebugEnabled()) {
-                    logger.debug("Error getting factory: " + JSSE14Factory, ex);
-                }
-            }
-        } if(factory == null) {
-            factory = new JSSE13Factory();
+        else if( JdkCompat.isJava14() ) {
+            className = JSSE14Factory;
+        } else {
+            className = JSSE13Factory;
         }
+
+        try {
+            factory = (JSSEFactory) Class.forName(className).newInstance();
+        } catch(Exception ex) {
+            if(logger.isDebugEnabled())
+                logger.debug("Error getting factory: " + className, ex);
+        }
     }
 
 






^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2008-09-17 20:19 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-09-17 20:19 [gentoo-commits] gentoo-x86 commit in www-servers/tomcat/files/5.5: 5.5.27-dynamic-JSSE13Factory.patch Petteri Raty (betelgeuse)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox