a better way of dealing with XML import issues

This commit is contained in:
benfry
2012-03-23 21:53:46 +00:00
parent 656a82dc98
commit 7acb7b3d0a
2 changed files with 17 additions and 8 deletions

View File

@@ -711,7 +711,8 @@ public class PdePreprocessor {
* @return true if this shouldn't be added to the final code
*/
public boolean ignoreImport(String pkg) {
return pkg.startsWith("processing.xml.");
return false;
// return pkg.startsWith("processing.xml.");
}
/**