From 04561e175d3fde166c0f54e4dcd276e347340bde Mon Sep 17 00:00:00 2001 From: liamfallon Date: Thu, 24 Jun 2021 17:01:11 +0100 Subject: Update apex-pdp for checkstyle 8.43 Issue-ID: POLICY-3206 Change-Id: I3873c85aab577e85a9ae6b610c3871ee4de6ea53 Signed-off-by: liamfallon --- .../model/generator/model2event/Model2JsonEventSchema.java | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) (limited to 'tools') 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 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 eventKeys, final String firsState, final AxState state) { - if (state.getKey().getLocalName().equals(firsState)) { + private void processInternalState(final Set eventKeys, final String firstState, + final AxState state) { + if (state.getKey().getLocalName().equals(firstState)) { return; } if ("NULL".equals(state.getNextStateSet().iterator().next())) { -- cgit 1.2.3-korg