diff options
Diffstat (limited to 'tools/model-generator/src/main/java')
-rw-r--r-- | tools/model-generator/src/main/java/org/onap/policy/apex/tools/model/generator/model2event/Model2JsonEventSchema.java | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/tools/model-generator/src/main/java/org/onap/policy/apex/tools/model/generator/model2event/Model2JsonEventSchema.java b/tools/model-generator/src/main/java/org/onap/policy/apex/tools/model/generator/model2event/Model2JsonEventSchema.java index 46fba872b..e48c233e2 100644 --- a/tools/model-generator/src/main/java/org/onap/policy/apex/tools/model/generator/model2event/Model2JsonEventSchema.java +++ b/tools/model-generator/src/main/java/org/onap/policy/apex/tools/model/generator/model2event/Model2JsonEventSchema.java @@ -1,6 +1,7 @@ /*- * ============LICENSE_START======================================================= * Copyright (C) 2016-2018 Ericsson. All rights reserved. + * Modifications Copyright (C) 2021 Nordix Foundation. * ================================================================================ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -300,7 +301,7 @@ public class Model2JsonEventSchema { /** * Process the state in the response. * @param eventKeys the event keys - * @param policies the policies to process + * @param policy the policy to process */ private void processState(final Set<AxArtifactKey> eventKeys, final AxPolicy policy) { for (final AxState state : policy.getStateMap().values()) { @@ -329,10 +330,12 @@ public class Model2JsonEventSchema { /** * Process the internal state. * @param eventKeys the event keys - * @param policies the policies to process + * @param firstState the first state to process + * @param state the state to process */ - private void processInternalState(final Set<AxArtifactKey> eventKeys, final String firsState, final AxState state) { - if (state.getKey().getLocalName().equals(firsState)) { + private void processInternalState(final Set<AxArtifactKey> eventKeys, final String firstState, + final AxState state) { + if (state.getKey().getLocalName().equals(firstState)) { return; } if ("NULL".equals(state.getNextStateSet().iterator().next())) { |