Author: markt Date: Thu May 15 10:19:47 2008 New Revision: 656745 URL: http://svn.apache.org/viewvc?rev=656745&view=rev Log: Remove TLS code that has never been part of the 6.0.x series.
Removed: tomcat/tc6.0.x/trunk/java/org/apache/tomcat/util/net/puretls/ Modified: tomcat/tc6.0.x/trunk/STATUS.txt tomcat/tc6.0.x/trunk/build.xml tomcat/tc6.0.x/trunk/java/org/apache/tomcat/util/net/SSLImplementation.java Modified: tomcat/tc6.0.x/trunk/STATUS.txt URL: http://svn.apache.org/viewvc/tomcat/tc6.0.x/trunk/STATUS.txt?rev=656745&r1=656744&r2=656745&view=diff ============================================================================== --- tomcat/tc6.0.x/trunk/STATUS.txt (original) +++ tomcat/tc6.0.x/trunk/STATUS.txt Thu May 15 10:19:47 2008 @@ -39,16 +39,6 @@ -1: remm: I believe it would need specific support for certain managers. Interested users could use their own extended manager instead. -* Remove old TLS code - http://svn.apache.org/viewvc?rev=616894&view=rev - +1: markt, fhanik, billbarker - +0: remm: I don't see the point of backporting these API changing cleanups - (markt) This is not an API change. It is just removing the TLS code - that has never been included in a 6.0.x src or bin release - It's my fault for not building it in then. I'm not sure this is intentional, - but I am ok with the change. - (billbarker) It was intentional, and discussed on dev@ - * Fix http://issues.apache.org/bugzilla/show_bug.cgi?id=44282 Do call to getClassLoader() in a privileged block. http://svn.apache.org/viewvc?rev=616953&view=rev Modified: tomcat/tc6.0.x/trunk/build.xml URL: http://svn.apache.org/viewvc/tomcat/tc6.0.x/trunk/build.xml?rev=656745&r1=656744&r2=656745&view=diff ============================================================================== --- tomcat/tc6.0.x/trunk/build.xml (original) +++ tomcat/tc6.0.x/trunk/build.xml Thu May 15 10:19:47 2008 @@ -109,7 +109,6 @@ excludes="**/CVS/**,**/.svn/**"> <!-- Comment this in to show unchecked warnings: <compilerarg value="-Xlint:unchecked"/> --> <classpath refid="tomcat.classpath" /> - <exclude name="org/apache/tomcat/util/net/puretls/**" /> <exclude name="org/apache/naming/factory/webservices/**" /> </javac> <tstamp> Modified: tomcat/tc6.0.x/trunk/java/org/apache/tomcat/util/net/SSLImplementation.java URL: http://svn.apache.org/viewvc/tomcat/tc6.0.x/trunk/java/org/apache/tomcat/util/net/SSLImplementation.java?rev=656745&r1=656744&r2=656745&view=diff ============================================================================== --- tomcat/tc6.0.x/trunk/java/org/apache/tomcat/util/net/SSLImplementation.java (original) +++ tomcat/tc6.0.x/trunk/java/org/apache/tomcat/util/net/SSLImplementation.java Thu May 15 10:19:47 2008 @@ -31,14 +31,11 @@ org.apache.juli.logging.LogFactory.getLog(SSLImplementation.class); // The default implementations in our search path - private static final String PureTLSImplementationClass= - "org.apache.tomcat.util.net.puretls.PureTLSImplementation"; private static final String JSSEImplementationClass= "org.apache.tomcat.util.net.jsse.JSSEImplementation"; private static final String[] implementations= { - PureTLSImplementationClass, JSSEImplementationClass }; --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]