git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@271156 13f79535-47bb-0310-9956-ffa450edef68master
| @@ -267,7 +267,7 @@ | |||||
| unless="jdk1.4+" /> | unless="jdk1.4+" /> | ||||
| <exclude name="${ant.package}/AntSecurityManager.java" | <exclude name="${ant.package}/AntSecurityManager.java" | ||||
| unless="jdk1.2+" /> | unless="jdk1.2+" /> | ||||
| <exclude name="${ant.package}/NoExitSecurityManager.java" | |||||
| <exclude name="${ant.package}/util/optional/NoExitSecurityManager.java" | |||||
| unless="jdk1.2+" /> | unless="jdk1.2+" /> | ||||
| <exclude name="${ant.package}/listener/Log4jListener.java" | <exclude name="${ant.package}/listener/Log4jListener.java" | ||||
| unless="log4j.present" /> | unless="log4j.present" /> | ||||
| @@ -56,7 +56,7 @@ package org.apache.tools.ant; | |||||
| /** | /** | ||||
| * Used to report exit status of classes which call System.exit() | * Used to report exit status of classes which call System.exit() | ||||
| * | * | ||||
| * @see NoExitSecurityManager | |||||
| * @see org.apache.tools.ant.util.optional.NoExitSecurityManager | |||||
| * | * | ||||
| * @author Conor MacNeill | * @author Conor MacNeill | ||||
| */ | */ | ||||
| @@ -1,7 +1,7 @@ | |||||
| /* | /* | ||||
| * The Apache Software License, Version 1.1 | * The Apache Software License, Version 1.1 | ||||
| * | * | ||||
| * Copyright (c) 2001 The Apache Software Foundation. All rights | |||||
| * Copyright (c) 2001-2002 The Apache Software Foundation. All rights | |||||
| * reserved. | * reserved. | ||||
| * | * | ||||
| * Redistribution and use in source and binary forms, with or without | * Redistribution and use in source and binary forms, with or without | ||||
| @@ -51,7 +51,9 @@ | |||||
| * information on the Apache Software Foundation, please see | * information on the Apache Software Foundation, please see | ||||
| * <http://www.apache.org/>. | * <http://www.apache.org/>. | ||||
| */ | */ | ||||
| package org.apache.tools.ant; | |||||
| package org.apache.tools.ant.util.optional; | |||||
| import org.apache.tools.ant.ExitException; | |||||
| import java.security.Permission; | import java.security.Permission; | ||||