Skip to content
This repository has been archived by the owner on Oct 2, 2020. It is now read-only.

Commit

Permalink
removed some sysouts
Browse files Browse the repository at this point in the history
  • Loading branch information
philnate committed May 4, 2012
1 parent bb4193e commit 7009940
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,6 @@ public void resourceChanged( IResourceChangeEvent arg0 )

public void createExpander( final ExpandBar bar, Map<String, Object> o, CollectionType collType )
{
System.out.println(o);
// First item
final Composite composite = new Composite( bar, SWT.FILL );
GridLayout layout = new GridLayout();
Expand All @@ -240,13 +239,12 @@ public void createExpander( final ExpandBar bar, Map<String, Object> o, Collecti
c++;
if ( key == "_id" || key == "_ns" )
continue;
Label keyLabel = new Label( composite, SWT.NONE );
Label keyLabel = new Label( composite, SWT.FILL );
keyLabel.setText( key.toString() );
Label valueLabel = new Label( composite, SWT.WRAP );
Object value = o.get( key );
valueLabel.setText( String.valueOf( value ) );
}
System.out.println(c);
Object value;
switch ( collType )
{
Expand Down

0 comments on commit 7009940

Please sign in to comment.