public void removeNature()

in org.apache.easyant4e/src/org/apache/easyant4e/services/EasyantProjectServiceImpl.java [233:245]


    public void removeNature(IProject project) {
        // Remove the nature on the given project
        RemoveEasyAntNatureOperation removeNature = new RemoveEasyAntNatureOperation(project);
        try {
            PlatformUI.getWorkbench().getProgressService().run(false, false, removeNature);
        } catch (InvocationTargetException e) {
            Activator.getEasyAntPlugin().log(IStatus.ERROR, "Cannot remove EasyAnt nature.", e);
        } catch (InterruptedException e) {
            Activator.getEasyAntPlugin().log(IStatus.CANCEL, "Remove EasyAnt nature operation aborted!", e);
        }
        // TODO remove IvyDE classpath container
        
    }