TOOL bug fix for attribute name and operation type generation

Change-Id: I63eb679d69378e422a329569d1021241af5aeb26
diff --git a/plugin/src/main/java/org/onosproject/yangutils/parser/impl/listeners/ShortCaseListener.java b/plugin/src/main/java/org/onosproject/yangutils/parser/impl/listeners/ShortCaseListener.java
index 612fe3b..90b5269 100644
--- a/plugin/src/main/java/org/onosproject/yangutils/parser/impl/listeners/ShortCaseListener.java
+++ b/plugin/src/main/java/org/onosproject/yangutils/parser/impl/listeners/ShortCaseListener.java
@@ -74,10 +74,10 @@
      * validations and updates the data model tree.
      *
      * @param listener listener's object
-     * @param ctx context object of the grammar rule
+     * @param ctx      context object of the grammar rule
      */
     public static void processShortCaseEntry(TreeWalkListener listener,
-            GeneratedYangParser.ShortCaseStatementContext ctx) {
+                                             GeneratedYangParser.ShortCaseStatementContext ctx) {
 
         ParseTree errorConstructContext;
 
@@ -128,10 +128,10 @@
      * validations and update the data model tree.
      *
      * @param listener Listener's object
-     * @param ctx context object of the grammar rule
+     * @param ctx      context object of the grammar rule
      */
     public static void processShortCaseExit(TreeWalkListener listener,
-            GeneratedYangParser.ShortCaseStatementContext ctx) {
+                                            GeneratedYangParser.ShortCaseStatementContext ctx) {
 
         // Check for stack to be non empty.
         checkStackIsNotEmpty(listener, MISSING_HOLDER, SHORT_CASE_DATA, "", EXIT);