Skip to content

Commit

Permalink
fixed standalone execution of 'wsdldiff' tool
Browse files Browse the repository at this point in the history
  • Loading branch information
rrayst committed Oct 26, 2021
1 parent 930fb48 commit 52730dd
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,12 @@ class DiffGeneratorContext implements Cloneable {
//List of compared elements to avoid a recursive comparison.
List<XMLElement> visited = []
String exchange //request, response or fault

public DiffGeneratorContext clone() {
DiffGeneratorContext r = new DiffGeneratorContext()
r.visited = visited?.clone()
r.exchange = exchange
return r
}
}

0 comments on commit 52730dd

Please # to comment.