Simplify if-statement

Change-Id: Ifa3dbc6f4bbace1db4d2998a9c8de0cc2c404ab4
diff --git a/core/store/dist/src/main/java/org/onosproject/store/resource/impl/TransactionalContinuousResourceStore.java b/core/store/dist/src/main/java/org/onosproject/store/resource/impl/TransactionalContinuousResourceStore.java
index ea289d4..7de85f8 100644
--- a/core/store/dist/src/main/java/org/onosproject/store/resource/impl/TransactionalContinuousResourceStore.java
+++ b/core/store/dist/src/main/java/org/onosproject/store/resource/impl/TransactionalContinuousResourceStore.java
@@ -146,12 +146,7 @@
             return false;
         }
 
-        boolean success = appendValue(original, new ResourceAllocation(request, consumer));
-        if (!success) {
-            return false;
-        }
-
-        return true;
+        return appendValue(original, new ResourceAllocation(request, consumer));
     }
 
     // Appends the specified ResourceAllocation to the existing values stored in the map