Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
better debugging
  • Loading branch information
wing328 committed Apr 1, 2020
commit 64a371d35802c0f9bc2bb1ddb49c49a4c104560c
Original file line number Diff line number Diff line change
Expand Up @@ -243,10 +243,9 @@ public PowerShellExperimentalClientCodegen() {
for (Map.Entry<String, List<String>> entry : verbMappings.entrySet()) {
// loop through each verb in the list
for (String verb : entry.getValue()) {
LOGGER.debug("processing: {}", verb);

if (verbMappings.containsKey(verb)) {
// the verb to be mapped is also a common verb, do nothing
LOGGER.debug("verbmapping: skipped {}", verb);
} else {
commonVerbs.put(verb, entry.getKey());
LOGGER.debug("verbmapping: adding {} => {}", verb, entry.getKey());
Expand Down