ctf: remove unused constructor in StructDefinition
authorMatthew Khouzam <matthew.khouzam@ericsson.com>
Tue, 31 Mar 2015 20:53:21 +0000 (16:53 -0400)
committerMatthew Khouzam <matthew.khouzam@ericsson.com>
Wed, 1 Apr 2015 19:32:14 +0000 (15:32 -0400)
Change-Id: I1b4ff80dbc604621b23ebf6f4aef57ccf8f5f8b7
Signed-off-by: Matthew Khouzam <matthew.khouzam@ericsson.com>
Reviewed-on: https://git.eclipse.org/r/44952
Reviewed-by: Hudson CI
Reviewed-by: Patrick Tasse <patrick.tasse@gmail.com>
Tested-by: Patrick Tasse <patrick.tasse@gmail.com>
org.eclipse.tracecompass.ctf.core/src/org/eclipse/tracecompass/ctf/core/event/types/StructDefinition.java

index 6e9d3b30b020cba0e7c74a9660ff4794d599d93a..7ffa125d9616e67ce1da8272cdb762213bc0fd24 100644 (file)
@@ -53,32 +53,6 @@ public final class StructDefinition extends ScopedDefinition implements IComposi
     // Constructors
     // ------------------------------------------------------------------------
 
-    /**
-     * *DEPRECATED* TODO: To remove once we break the API...
-     *
-     * Not marked with the annotation to not annoy callers using a List, which
-     * is still as valid with the new constructor. But the compiler gives an
-     * error even though a Iterable is a List too...
-     *
-     * @param declaration
-     *            the parent declaration
-     * @param definitionScope
-     *            the parent scope
-     * @param structFieldName
-     *            the field name
-     * @param fieldNames
-     *            the list of fields
-     * @param definitions
-     *            the definitions
-     */
-    public StructDefinition(@NonNull StructDeclaration declaration,
-            IDefinitionScope definitionScope,
-            @NonNull String structFieldName,
-            List<String> fieldNames,
-            Definition[] definitions) {
-        this(declaration, definitionScope, structFieldName, (Iterable<String>) fieldNames, definitions);
-    }
-
     /**
      * Constructor
      *
This page took 0.02618 seconds and 5 git commands to generate.