Skip to content
Merged
Changes from 1 commit
Commits
File filter

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
clarify arguments on method
  • Loading branch information
CarolynRountree committed Feb 10, 2021
commit f7a6506e95acd7dfc583ef92a4555f62fd0845e8
8 changes: 4 additions & 4 deletions core/src/main/python/wlsdeploy/util/string_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,9 +112,9 @@ def load_properties(property_file, exception_type=None):
def is_weblogic_version_or_above(wls_version, str_version):
"""
Is the provided version number equal to or greater than the version encapsualted by this version instance
:param wls_version: the array representation of the current weblogic version to be compared
:param str_version: the string representation of the version to be compared
:return: True if the provided version is equal or greater than the version represented by this helper instance
:param wls_version: the string representation of the current weblogic version
:param str_version: the string representation of the version to be compared to the weblogic version
:return: True if the provided version is equal or greater than the version represented by the wls_version argument
"""
result = False
array_version = str_version.split('.')
Expand Down Expand Up @@ -148,7 +148,7 @@ def is_weblogic_version_or_above(wls_version, str_version):
def _get_wl_version_array(wl_version):
"""
Get the WebLogic version number padded to the standard number of digits.
:param wl_version: Weblogic version number
:param wl_version: WebLogic version number
:return: the padded WebLogic version number
"""
result = wl_version.split('.')
Expand Down