[jbosstools-commits] JBoss Tools SVN: r22068 - trunk/tests/plugins/org.jboss.tools.tests/src/org/jboss/tools/tests.
jbosstools-commits at lists.jboss.org
jbosstools-commits at lists.jboss.org
Thu May 13 11:26:11 EDT 2010
Author: akazakov
Date: 2010-05-13 11:26:09 -0400 (Thu, 13 May 2010)
New Revision: 22068
Modified:
trunk/tests/plugins/org.jboss.tools.tests/src/org/jboss/tools/tests/AbstractResourceMarkerTest.java
Log:
Removed System.out()
Modified: trunk/tests/plugins/org.jboss.tools.tests/src/org/jboss/tools/tests/AbstractResourceMarkerTest.java
===================================================================
--- trunk/tests/plugins/org.jboss.tools.tests/src/org/jboss/tools/tests/AbstractResourceMarkerTest.java 2010-05-13 15:03:19 UTC (rev 22067)
+++ trunk/tests/plugins/org.jboss.tools.tests/src/org/jboss/tools/tests/AbstractResourceMarkerTest.java 2010-05-13 15:26:09 UTC (rev 22068)
@@ -65,7 +65,6 @@
public static IMarker[] findMarkers(IResource resource, String type, String pattern) throws CoreException {
List<IMarker> result = new ArrayList<IMarker>();
IMarker[] markers = resource.findMarkers(type, true, IResource.DEPTH_INFINITE);
- System.out.println("");
for (int i = 0; i < markers.length; i++) {
String message = markers[i].getAttribute(IMarker.MESSAGE, ""); //$NON-NLS-1$
if ((message.matches(pattern)||message.equals(pattern)) && markers[i].exists()) {
More information about the jbosstools-commits
mailing list