Skip to content

Commit

Permalink
Improve debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
n1hility committed Jul 27, 2012
1 parent c5d6fac commit b6d6cfe
Showing 1 changed file with 8 additions and 8 deletions.
Expand Up @@ -644,15 +644,15 @@ public void testRemoveDependentService() throws Exception {
System.out.println(sc.getName());
System.out.println("Mode = " + sc.getMode());
System.out.println("Substate = " + sc.getSubstate());
}

sc = container.getService(ServiceName.JBOSS.append("dependent-service"));
if (sc == null) {
System.out.println("Null dependent service!");
} else {
System.out.println(sc.getName());
System.out.println("Mode = " + sc.getMode());
System.out.println("Substate = " + sc.getSubstate());
}
sc = container.getService(ServiceName.JBOSS.append("dependent-service"));
if (sc == null) {
System.out.println("Null dependent service!");
} else {
System.out.println(sc.getName());
System.out.println("Mode = " + sc.getMode());
System.out.println("Substate = " + sc.getSubstate());
}
}

Expand Down

0 comments on commit b6d6cfe

Please sign in to comment.