Author: rob.stryker(a)jboss.com
Date: 2007-05-04 19:27:41 -0400 (Fri, 04 May 2007)
New Revision: 2003
Modified:
trunk/ejb3/plugins/org.jboss.ide.eclipse.ejb3.wizards.ui/src/main/org/jboss/ide/eclipse/ejb3/ui/wizards/pages/NewSessionBeanWizardPage.java
Log:
Removed non-essential system print statements.
Fixed bug in edit fileset wizard.
Modified:
trunk/ejb3/plugins/org.jboss.ide.eclipse.ejb3.wizards.ui/src/main/org/jboss/ide/eclipse/ejb3/ui/wizards/pages/NewSessionBeanWizardPage.java
===================================================================
---
trunk/ejb3/plugins/org.jboss.ide.eclipse.ejb3.wizards.ui/src/main/org/jboss/ide/eclipse/ejb3/ui/wizards/pages/NewSessionBeanWizardPage.java 2007-05-04
23:27:38 UTC (rev 2002)
+++
trunk/ejb3/plugins/org.jboss.ide.eclipse.ejb3.wizards.ui/src/main/org/jboss/ide/eclipse/ejb3/ui/wizards/pages/NewSessionBeanWizardPage.java 2007-05-04
23:27:41 UTC (rev 2003)
@@ -311,7 +311,6 @@
beanAstUnit.recordModifications();
ImportDeclaration importDecl = ast.newImportDeclaration();
- System.out.println("javax.ejb." + beanType);
importDecl.setName(ast.newName(new String[]
{"javax", "ejb", beanType}));
importDecl.setOnDemand(false);
@@ -357,10 +356,7 @@
String source = "package " + remoteInterfacePackage + ";\n" +
"\n" + "import javax.ejb.Remote;\n" + "\n"
+ "@Remote\n" + "public interface " + remoteInterfaceName
+ " {\n" + "\n" + "}\n";
- //System.out.println(remoteInterfaceName + " = " + source);
- System.out.println("remoteInterfacePackageFragment exists?" +
remoteInterfacePackageFragment.exists());
-
return remoteInterfacePackageFragment.createCompilationUnit(remoteInterfaceName +
".java", source, true, monitor);
// AST ast = new AST();
// CompilationUnit unit = ast.newCompilationUnit();
Show replies by date