Fix simulator topics for lower case
[policy/models.git] / models-interactions / model-actors / actorServiceProvider / src / main / java / org / onap / policy / controlloop / actorserviceprovider / OperationFinalResult.java
index 67d25f2..f9f3a10 100644 (file)
@@ -2,7 +2,7 @@
  * ============LICENSE_START=======================================================
  * models
  * ================================================================================
- * Copyright (C) 2020 AT&T Intellectual Property. All rights reserved.
+ * Copyright (C) 2020-2021 AT&T Intellectual Property. All rights reserved.
  * ================================================================================
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -96,7 +96,7 @@ public enum OperationFinalResult {
      * @return true if a result
      */
     public static boolean isResult(String result, OperationFinalResult finalResult) {
-        OperationFinalResult toResult = OperationFinalResult.toResult(result);
+        var toResult = OperationFinalResult.toResult(result);
         if (toResult == null) {
             return false;
         }