Author: mrglavas
Date: Wed Jul 26 15:25:19 2006
New Revision: 425878
URL: http://svn.apache.org/viewvc?rev=425878&view=rev
Log:
Mark SecuritySupport12 as final.
Modified:
xml/commons/branches/tck-jaxp-1_2_0/java/external/src/org/xml/sax/helpers/SecuritySupport12.java
Modified: xml/commons/branches/tck-jaxp-1_2_0/java/external/src/org/xml/sax/helpers/SecuritySupport12.java
URL: http://svn.apache.org/viewvc/xml/commons/branches/tck-jaxp-1_2_0/java/external/src/org/xml/sax/helpers/SecuritySupport12.java?rev=425878&r1=425877&r2=425878&view=diff
==============================================================================
--- xml/commons/branches/tck-jaxp-1_2_0/java/external/src/org/xml/sax/helpers/SecuritySupport12.java
(original)
+++ xml/commons/branches/tck-jaxp-1_2_0/java/external/src/org/xml/sax/helpers/SecuritySupport12.java
Wed Jul 26 15:25:19 2006
@@ -55,10 +55,14 @@
package org.xml.sax.helpers;
-import java.security.*;
-import java.net.*;
-import java.io.*;
-import java.util.*;
+import java.io.File;
+import java.io.FileInputStream;
+import java.io.FileNotFoundException;
+import java.io.InputStream;
+import java.security.AccessController;
+import java.security.PrivilegedAction;
+import java.security.PrivilegedActionException;
+import java.security.PrivilegedExceptionAction;
/**
* This class is duplicated for each JAXP subpackage so keep it in sync.
@@ -67,7 +71,7 @@
*
* Security related methods that only work on J2SE 1.2 and newer.
*/
-class SecuritySupport12 extends SecuritySupport {
+final class SecuritySupport12 extends SecuritySupport {
public ClassLoader getContextClassLoader() {
return (ClassLoader)
|