You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by ah...@apache.org on 2013/01/23 23:39:30 UTC

svn commit: r1437785 - /flex/sdk/branches/develop/mustella/utilities/ImageDiffAIR/src/ImageDiffAIR.mxml

Author: aharui
Date: Wed Jan 23 22:39:30 2013
New Revision: 1437785

URL: http://svn.apache.org/viewvc?rev=1437785&view=rev
Log:
filter out bad.png.xml files

Modified:
    flex/sdk/branches/develop/mustella/utilities/ImageDiffAIR/src/ImageDiffAIR.mxml

Modified: flex/sdk/branches/develop/mustella/utilities/ImageDiffAIR/src/ImageDiffAIR.mxml
URL: http://svn.apache.org/viewvc/flex/sdk/branches/develop/mustella/utilities/ImageDiffAIR/src/ImageDiffAIR.mxml?rev=1437785&r1=1437784&r2=1437785&view=diff
==============================================================================
--- flex/sdk/branches/develop/mustella/utilities/ImageDiffAIR/src/ImageDiffAIR.mxml (original)
+++ flex/sdk/branches/develop/mustella/utilities/ImageDiffAIR/src/ImageDiffAIR.mxml Wed Jan 23 22:39:30 2013
@@ -451,7 +451,8 @@
 					{
 						if (file.url.indexOf(".png.bad.png") != -1)
 						{
-							filesArray.push(file);
+							if (file.url.indexOf(".png.bad.png.xml") == -1)
+								filesArray.push(file);
 						}
 					}
 				}