Skip to content

Commit

Permalink
removed sysouts
Browse files Browse the repository at this point in the history
  • Loading branch information
lb-actoron committed Feb 24, 2022
1 parent 5ad32d0 commit e42eabb
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
8 changes: 5 additions & 3 deletions kernels/micro/src/main/java/jadex/micro/KernelMultiAgent.java
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ public IFuture<Void> execute(IInternalAccess ia)
*/
public IFuture<byte[]> getComponentTypeIcon(String type)
{
System.out.println("multi factory icon: "+type+" "+iconcache.containsKey(type));
//System.out.println("multi factory icon: "+type+" "+iconcache.containsKey(type));

byte[] icon = iconcache.get(type);

Expand Down Expand Up @@ -730,6 +730,8 @@ protected void initKnownComponentTypes()
allcomponenttypes = new HashSet<String>();
allannotationtypes = new HashMap<String, String>();

// todo: use scanForKernels()

for(String kk: known_kernels)
{
// todo: use library loader (needs rid besides classname)
Expand Down Expand Up @@ -772,8 +774,8 @@ protected void initKnownComponentTypes()
}
}

System.out.println("comp types: "+allcomponenttypes);
System.out.println("ann types: "+allannotationtypes);
//System.out.println("comp types: "+allcomponenttypes);
//System.out.println("ann types: "+allannotationtypes);
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ public IFuture<Boolean> filter(IComponentFactory obj)

if(type!=null)
{
System.out.print("factypes: "+fac+" "+fac.getComponentTypes());
//System.out.print("factypes: "+fac+" "+fac.getComponentTypes());
ret.setResult(Arrays.asList(fac.getComponentTypes()).contains(type));
}
else if(anntype!=null)
Expand Down

0 comments on commit e42eabb

Please sign in to comment.