Author: peterreilly Date: Fri Sep 28 08:47:45 2007 New Revision: 580393 URL: http://svn.apache.org/viewvc?rev=580393&view=rev Log: fix scoping
Modified: ant/core/trunk/src/main/org/apache/tools/ant/types/resources/JavaResource.java Modified: ant/core/trunk/src/main/org/apache/tools/ant/types/resources/JavaResource.java URL: http://svn.apache.org/viewvc/ant/core/trunk/src/main/org/apache/tools/ant/types/resources/JavaResource.java?rev=580393&r1=580392&r2=580393&view=diff ============================================================================== --- ant/core/trunk/src/main/org/apache/tools/ant/types/resources/JavaResource.java (original) +++ ant/core/trunk/src/main/org/apache/tools/ant/types/resources/JavaResource.java Fri Sep 28 08:47:45 2007 @@ -128,14 +128,13 @@ * @return true if this resource exists. */ public boolean isExists() { + if (isReference()) { + return ((Resource) getCheckedRef()).isExists(); + } InputStream is = null; try { - if (isReference()) { - return ((Resource) getCheckedRef()).isExists(); - } else { - is = getInputStream(); - return is != null; - } + is = getInputStream(); + return is != null; } catch (IOException ex) { return false; } finally { --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]