Fix some null warnings
[deliverable/tracecompass.git] / ctf / org.eclipse.tracecompass.ctf.core / src / org / eclipse / tracecompass / ctf / core / event / types / EnumDeclaration.java
index ffa0b8bf84822bf081c3265cd8252b2f94d2bbdb..77238602f31d0a3e347429125aec9f20ebcaa489 100644 (file)
@@ -353,8 +353,7 @@ public final class EnumDeclaration extends Declaration implements ISimpleDatatyp
         }
         sb.append("type:").append(fContainerType.toString()); //$NON-NLS-1$
         sb.append(']');
-        String string = sb.toString();
-        return string;
+        return sb.toString();
     }
 
     @Override
This page took 0.027325 seconds and 5 git commands to generate.