We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f209654 commit bd18de1Copy full SHA for bd18de1
core/src/main/java/oracle/weblogic/deploy/util/XPathUtil.java
@@ -60,12 +60,10 @@ public String getPSU() {
60
for (String patch_file : patch_files){
61
Document doc = readXmlFile(patch_file);
62
String descrip = description(doc, "//@description");
63
- LOGGER.info("Description {0}", descrip);
64
if (descrip.startsWith("WLS PATCH SET UPDATE")) {
65
int idx = descrip.lastIndexOf('.');
66
String psu = descrip.substring(idx+1);
67
- LOGGER.info("PSU Is {0}", psu);
68
- list.add(psu);
+ list.add(psu);
69
Collections.sort(list);
70
return list.get(list.size() -1);
71
}
0 commit comments