Skip to content

Commit

Permalink
testing after removing deprecated constructor
Browse files Browse the repository at this point in the history
Signed-off-by: Arun Venmany <[email protected]>
  • Loading branch information
arunvenmany-ibm committed Nov 12, 2024
1 parent da619ef commit 5cb19b0
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -506,8 +506,8 @@ abstract class AbstractServerTask extends AbstractLibertyTask {
}

protected ServerConfigDocument getServerConfigDocument(CommonLogger log, File severXml, Map<String, File> libertyDirPropertyFiles) throws IOException {
if (scd == null || !scd.getServerXML().getCanonicalPath().equals(severXml.getCanonicalPath())) {
scd = new ServerConfigDocument(log, libertyDirPropertyFiles)
if (scd == null || !scd.getOriginalServerXMLFile().getCanonicalPath().equals(severXml.getCanonicalPath())) {
scd = new ServerConfigDocument(log, serverxml,libertyDirPropertyFiles)
}
return scd
}
Expand Down

0 comments on commit 5cb19b0

Please sign in to comment.