Blame SOURCES/fix-ant-execution.patch

d433ea
diff --git a/eclipse.platform/ant/org.eclipse.ant.launching/remote/org/eclipse/ant/internal/launching/remote/AntSecurityManager.java b/eclipse.platform/ant/org.eclipse.ant.launching/remote/org/eclipse/ant/internal/launching/remote/AntSecurityManager.java
d433ea
index b6c0d1e68..a35e683d7 100644
d433ea
--- a/eclipse.platform/ant/org.eclipse.ant.launching/remote/org/eclipse/ant/internal/launching/remote/AntSecurityManager.java
d433ea
+++ b/eclipse.platform/ant/org.eclipse.ant.launching/remote/org/eclipse/ant/internal/launching/remote/AntSecurityManager.java
d433ea
@@ -19,12 +19,6 @@ import java.net.SocketPermission;
d433ea
 import java.security.Permission;
d433ea
 import java.util.PropertyPermission;
d433ea
 
d433ea
-import org.eclipse.ant.core.AntCorePlugin;
d433ea
-import org.eclipse.ant.core.AntSecurityException;
d433ea
-import org.eclipse.core.runtime.IStatus;
d433ea
-import org.eclipse.core.runtime.Platform;
d433ea
-import org.eclipse.core.runtime.Status;
d433ea
-
d433ea
 /**
d433ea
  * A security manager that always throws an AntSecurityException if the calling thread attempts to cause the Java Virtual Machine to
d433ea
  * exit/halt or if the restricted thread attempts to set a System property. Otherwise this manager just delegates to the pre-existing manager passed
d433ea
@@ -453,8 +447,6 @@ public class AntSecurityManager extends SecurityManager {
d433ea
 			return super.getInCheck();
d433ea
 		}
d433ea
 		catch (NoSuchMethodException | SecurityException e) {
d433ea
-			Platform.getLog(AntCorePlugin.getPlugin().getBundle()).log(new Status(IStatus.WARNING, "org.eclipse.ant.launching", //$NON-NLS-1$
d433ea
-					RemoteAntMessages.getString("AntSecurityManager.getInCheck"))); //$NON-NLS-1$
d433ea
 			return false;
d433ea
 		}
d433ea
 	}