private String resolveRelativePath()

in org.apache.easyant4e/src/org/apache/easyant4e/natures/EasyAntNature.java [138:144]


    private String resolveRelativePath(String path){
        if(path!=null && path.startsWith(".")){
            String projectPath = project.getLocation().toPortableString();
            path= new File(projectPath+"/"+path).getAbsolutePath();
        }
        return path;
    }