Skip to content

Commit

Permalink
#626 | CockpitNG DOM inspection is not properly validating Create Wiz…
Browse files Browse the repository at this point in the history
…ard Navigation xml tag
  • Loading branch information
mlytvyn authored Aug 21, 2023
1 parent 7fa299b commit 537e927
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 10 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,7 @@
- Dependant modules are not imported [#614](https://github.com/epam/sap-commerce-intellij-idea-plugin/pull/614)
- Ensure that `Properties` Plugin dependant code works only when corresponding Plugin is enabled [#618](https://github.com/epam/sap-commerce-intellij-idea-plugin/pull/618)
- Also hide full Module name for `web` sub-module in the Project View [#622](https://github.com/epam/sap-commerce-intellij-idea-plugin/pull/622)
- CockpitNG DOM inspection is not properly validating Create Wizard Navigation xml tag [#626](https://github.com/epam/sap-commerce-intellij-idea-plugin/pull/626)

### Other
- Adjusted inline documentation for Type System [#539](https://github.com/epam/sap-commerce-intellij-idea-plugin/pull/539)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* This file is part of "SAP Commerce Developers Toolset" plugin for Intellij IDEA.
* Copyright (C) 2019 EPAM Systems <[email protected]>
* Copyright (C) 2019-2023 EPAM Systems <[email protected]> and contributors
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as
Expand All @@ -22,13 +22,7 @@
package com.intellij.idea.plugin.hybris.system.cockpitng.model.wizardConfig;

import com.intellij.idea.plugin.hybris.common.HybrisConstants;
import com.intellij.util.xml.DomElement;
import com.intellij.util.xml.GenericAttributeValue;
import com.intellij.util.xml.GenericDomValue;
import com.intellij.util.xml.Namespace;
import com.intellij.util.xml.Required;
import com.intellij.util.xml.SubTag;
import com.intellij.util.xml.SubTagList;
import com.intellij.util.xml.*;
import org.jetbrains.annotations.NotNull;

/**
Expand Down Expand Up @@ -76,7 +70,6 @@ public interface AbstractAction extends DomElement {
*/
@NotNull
@SubTag ("save-all")
@Required
GenericDomValue<String> getSaveAll();


Expand All @@ -86,7 +79,6 @@ public interface AbstractAction extends DomElement {
*/
@NotNull
@SubTagList ("save")
@Required
java.util.List<Save> getSaves();
/**
* Adds new child to the list of save children.
Expand Down

0 comments on commit 537e927

Please sign in to comment.