Skip to content
This repository has been archived by the owner on Aug 20, 2024. It is now read-only.

Silenced false warnings #131

Closed
wants to merge 3 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -405,7 +405,7 @@ class SchemaValidator extends PluginExtensionPoint {
def Map properties = (Map) group.value['properties']
for (p in properties) {
def String key = (String) p.key
if (!params[key]) {
if (key.contains(".") || !params[key]) { // ignore nested params with dot operator => TODO: remove this after adding nested params support
continue
}
def Map property = properties[key] as Map
Expand Down