Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFabien Giquel2018-04-03 13:23:09 +0000
committerFabien Giquel2018-04-06 15:06:01 +0000
commit6dd8f848a6158cc59d2eabe8fa940c38057bfb61 (patch)
treeebd0f421b6d978d5468f8a3c92314e377985cf48 /org.eclipse.gmt.modisco.infra.browser/src/org/eclipse/gmt/modisco/infra/browser/editors/table/TableEditorInput.java
parentcfa83ab40e0ff3e1dce6cda48620b545c240fecb (diff)
downloadorg.eclipse.modisco-6dd8f848a6158cc59d2eabe8fa940c38057bfb61.tar.gz
org.eclipse.modisco-6dd8f848a6158cc59d2eabe8fa940c38057bfb61.tar.xz
org.eclipse.modisco-6dd8f848a6158cc59d2eabe8fa940c38057bfb61.zip
Bug 533168 - (releng) OutOfMemory during quality postprocessing becausemaintenance-1.0
large number of checkstyle warnings Code source generated for Ecore models must not be verified with checkstyle/pmd -> move sources to "src-gen" filtered folder on releng + update .checkstyle files to reference EmfFacet-6.2.checkstyle + clean-up profile "Temp-Remove Trailings spaces" Change-Id: Ib98ebe82f20c3de61eacd7148adb45cc8104e427 Signed-off-by: Fabien Giquel <fgiquel@mia-software.com>
Diffstat (limited to 'org.eclipse.gmt.modisco.infra.browser/src/org/eclipse/gmt/modisco/infra/browser/editors/table/TableEditorInput.java')
-rw-r--r--org.eclipse.gmt.modisco.infra.browser/src/org/eclipse/gmt/modisco/infra/browser/editors/table/TableEditorInput.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/org.eclipse.gmt.modisco.infra.browser/src/org/eclipse/gmt/modisco/infra/browser/editors/table/TableEditorInput.java b/org.eclipse.gmt.modisco.infra.browser/src/org/eclipse/gmt/modisco/infra/browser/editors/table/TableEditorInput.java
index ce28acb8d..3fdc03729 100644
--- a/org.eclipse.gmt.modisco.infra.browser/src/org/eclipse/gmt/modisco/infra/browser/editors/table/TableEditorInput.java
+++ b/org.eclipse.gmt.modisco.infra.browser/src/org/eclipse/gmt/modisco/infra/browser/editors/table/TableEditorInput.java
@@ -42,7 +42,7 @@ public class TableEditorInput implements IEditorInput {
/**
* Create an input for all the given elements
- *
+ *
* @param browserConfiguration
* the main browser's configuration
* @param tableElements
@@ -81,13 +81,13 @@ public class TableEditorInput implements IEditorInput {
for (final EClass eClass : this.metaclasses) {
features.addAll(eClass.getEAllStructuralFeatures());
}
-
+
this.fFeatures = new ArrayList<EStructuralFeature>(features);
}
/**
* Create an input for all elements of the given class
- *
+ *
* @param browserConfiguration
* the main editor configuration
* @param eClass
@@ -113,7 +113,7 @@ public class TableEditorInput implements IEditorInput {
public List<TableElement> getElements() {
return this.elements;
}
-
+
public List<EStructuralFeature> getFeatures() {
return this.fFeatures;
}

Back to the top