Skip to content

Commit

Permalink
Remove debug statements
Browse files Browse the repository at this point in the history
  • Loading branch information
lincolnthree committed Jan 29, 2015
1 parent 461afea commit b761700
Showing 1 changed file with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -394,15 +394,12 @@ public AddonRegistry call() throws Exception
{
if (repositories == null || repositories.length == 0)
{
System.out.println("Creating new ROOT view.");
String name = "ROOT" + "_" + UUID.randomUUID().toString();
registry = new AddonRegistryImpl(lock, getLifecycleManager(), getRepositories(), name);
}
else
{
String name = String.valueOf(registryCount++ + "_" + UUID.randomUUID().toString());
System.out.println("Creating new view [" + name + "] with [" + repositories.length
+ "] repositories: " + repositories);
registry = new AddonRegistryImpl(lock, getLifecycleManager(), Arrays.asList(repositories), name);
}
getLifecycleManager().addView(registry);
Expand Down

0 comments on commit b761700

Please sign in to comment.