Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBenoit Maggi2017-09-25 08:18:38 +0000
committerBenoit Maggi2017-09-25 13:36:34 +0000
commit308ee2350b151160c1cae2645c72c2e37fb5b7ca (patch)
tree0ba7d35dff69eb1110088198355dbf7b5f70fd96 /plugins/editor
parentde45f839cfb1ab408dd92bf0d9b072dd16053d83 (diff)
downloadorg.eclipse.papyrus-308ee2350b151160c1cae2645c72c2e37fb5b7ca.tar.gz
org.eclipse.papyrus-308ee2350b151160c1cae2645c72c2e37fb5b7ca.tar.xz
org.eclipse.papyrus-308ee2350b151160c1cae2645c72c2e37fb5b7ca.zip
Bug 521475 - [userxp] the following plugin logs directly into the
console with System.out.println - replace system.out by logs - fix some quality warnings - add missing licenses - export all package at runtime Change-Id: I02879db9ff9ec91cbda577303910420c5a8b0463 Signed-off-by: Benoit Maggi <benoit.maggi@cea.fr>
Diffstat (limited to 'plugins/editor')
-rw-r--r--plugins/editor/org.eclipse.papyrus.eclipse.project.editors/src/org/eclipse/papyrus/eclipse/project/editors/file/ManifestEditor.java7
-rw-r--r--plugins/editor/org.eclipse.papyrus.editor/src/org/eclipse/papyrus/editor/commands/RenameNestedEditorCommand.java1
2 files changed, 0 insertions, 8 deletions
diff --git a/plugins/editor/org.eclipse.papyrus.eclipse.project.editors/src/org/eclipse/papyrus/eclipse/project/editors/file/ManifestEditor.java b/plugins/editor/org.eclipse.papyrus.eclipse.project.editors/src/org/eclipse/papyrus/eclipse/project/editors/file/ManifestEditor.java
index ace6fd506b8..b191b1da17a 100644
--- a/plugins/editor/org.eclipse.papyrus.eclipse.project.editors/src/org/eclipse/papyrus/eclipse/project/editors/file/ManifestEditor.java
+++ b/plugins/editor/org.eclipse.papyrus.eclipse.project.editors/src/org/eclipse/papyrus/eclipse/project/editors/file/ManifestEditor.java
@@ -536,13 +536,6 @@ public class ManifestEditor extends ProjectEditor implements IManifestEditor {
manifestFile.create(getInputStream(input), true, null);
manifestFile = getProject().getFile(MANIFEST_PATH);
- // final int i;
- // InputStream is = this.manifestFile.getContents();
- // while((i = is.read()) > 0) {
- // System.out.println(i);
- // }
- // this.manifest = new Manifest(this.manifestFile.getContents());
-
} catch (final CoreException ex) {
Activator.log.error(ex);
}
diff --git a/plugins/editor/org.eclipse.papyrus.editor/src/org/eclipse/papyrus/editor/commands/RenameNestedEditorCommand.java b/plugins/editor/org.eclipse.papyrus.editor/src/org/eclipse/papyrus/editor/commands/RenameNestedEditorCommand.java
index ed198c75175..4bffb2dad4a 100644
--- a/plugins/editor/org.eclipse.papyrus.editor/src/org/eclipse/papyrus/editor/commands/RenameNestedEditorCommand.java
+++ b/plugins/editor/org.eclipse.papyrus.editor/src/org/eclipse/papyrus/editor/commands/RenameNestedEditorCommand.java
@@ -50,7 +50,6 @@ public class RenameNestedEditorCommand extends AbstractHandler {
*/
@Override
public void setEnabled(Object evaluationContext) {
- // System.out.println("call to CloseDiagramCommand.setEnable(" + evaluationContext + ")");
}
/**

Back to the top