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