Skip to content

Commit

Permalink
Removing print to stdout.
Browse files Browse the repository at this point in the history
Signed-off-by: Egon Willighagen <egonw@users.sourceforge.net>
  • Loading branch information
johnmay authored and egonw committed Oct 18, 2013
1 parent ce2c98c commit 06d535c
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
Expand Up @@ -90,7 +90,6 @@ public class JumboCyclicVertexSearchTest {
{55, 59}, {58, 60}, {56, 59}};
CyclicVertexSearch search = new JumboCyclicVertexSearch(g);
int[] colors = search.vertexColor();
System.out.println(Arrays.toString(colors));
}

@Test public void testIsolated() {
Expand Down
Expand Up @@ -91,7 +91,6 @@ public class RegularCyclicVertexSearchTest {
{55, 59}, {58, 60}, {56, 59}};
CyclicVertexSearch search = new RegularCyclicVertexSearch(g);
int[] colors = search.vertexColor();
System.out.println(Arrays.toString(colors));
}

@Test public void testIsolated() {
Expand Down

0 comments on commit 06d535c

Please sign in to comment.