[AAI] Fix TOC for the release notes documentation
[aai/aai-common.git] / aai-core / src / main / java / org / onap / aai / util / AAIUtils.java
index ba2cf9e..67fea84 100644 (file)
@@ -19,6 +19,7 @@
  * limitations under the License.
  * ============LICENSE_END=========================================================
  */
+
 package org.onap.aai.util;
 
 import java.text.DateFormat;
@@ -28,7 +29,7 @@ import java.util.Date;
 import java.util.TimeZone;
 
 public class AAIUtils {
-    
+
     /**
      * Instantiates AAIUtils.
      */
@@ -54,8 +55,8 @@ public class AAIUtils {
      */
     public static String genDate() {
         Date date = new Date();
-        DateFormat formatter = new SimpleDateFormat("YYMMdd-HH:mm:ss:SSS");
+        DateFormat formatter = new SimpleDateFormat("yyMMdd-HH:mm:ss:SSS");
         formatter.setTimeZone(TimeZone.getTimeZone("GMT"));
         return formatter.format(date);
-    }    
+    }
 }