Skip to content

Commit 6e2a030

Browse files
resolve requests for changes
2 parents 4014222 + c1813c0 commit 6e2a030

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

core/src/main/java/oracle/weblogic/deploy/util/XPathUtil.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,7 @@ public String getPSU() {
6565
if (descrip != null && descrip.startsWith("WLS PATCH SET UPDATE")) {
6666
int idx = descrip.lastIndexOf('.');
6767
String psu = descrip.substring(idx+1);
68-
LOGGER.info("PSU Is {0}", psu);
69-
list.add(psu);
68+
list.add(psu);
7069
Collections.sort(list);
7170
return list.get(list.size() -1);
7271
}

core/src/main/python/wlsdeploy/aliases/aliases.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ def __init__(self, model_context, wlst_mode=WlstModes.OFFLINE, wls_version=None,
6666
:param model_context: used for tokenizing and encryption
6767
:param wlst_mode: offline or online, default is offline
6868
:param wls_version: the WLS version to use, default is to Oracle Home version
69-
:param exception_type: the exception type to be thrownN
69+
:param exception_type: the exception type to be thrown
7070
"""
7171
self._model_context = model_context
7272
self._wlst_mode = wlst_mode

0 commit comments

Comments
 (0)