Skip to content

Commit 542c5d0

Browse files
committed
Issue#27 - Corrected comments
1 parent 5f63738 commit 542c5d0

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

core/src/main/python/create.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -280,9 +280,7 @@ def validate_model(model_dictionary, model_context, aliases):
280280
try:
281281
validator = Validator(model_context, aliases, wlst_mode=__wlst_mode)
282282

283-
# Since the have already performed all variable substitution,
284-
# no need to pass the variable file for processing.
285-
#
283+
# no need to pass the variable file for processing, substitution has already been performed
286284
return_code = validator.validate_in_tool_mode(model_dictionary, variables_file_name=None,
287285
archive_file_name=model_context.get_archive_file_name())
288286
except ValidateException, ex:

core/src/main/python/deploy.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -399,9 +399,7 @@ def validate_model(model_dictionary, model_context, aliases):
399399
try:
400400
validator = Validator(model_context, aliases, wlst_mode=__wlst_mode)
401401

402-
# Since the have already performed all variable substitution,
403-
# no need to pass the variable file for processing.
404-
#
402+
# no need to pass the variable file for processing, substitution has already been performed
405403
return_code = validator.validate_in_tool_mode(model_dictionary, variables_file_name=None,
406404
archive_file_name=model_context.get_archive_file_name())
407405
except ValidateException, ex:

0 commit comments

Comments
 (0)