forked from unshare/hybris-integration-intellij-idea-plugin
-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#626 | CockpitNG DOM inspection is not properly validating Create Wiz…
…ard Navigation xml tag
- Loading branch information
Showing
2 changed files
with
3 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|
@@ -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; | ||
|
||
/** | ||
|
@@ -76,7 +70,6 @@ public interface AbstractAction extends DomElement { | |
*/ | ||
@NotNull | ||
@SubTag ("save-all") | ||
@Required | ||
GenericDomValue<String> getSaveAll(); | ||
|
||
|
||
|
@@ -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. | ||
|