File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -124,7 +124,7 @@ bash_object.traverse-get() {
124
124
local -n __current_object=" $current_object_name "
125
125
126
126
if [ -n " ${VERIFY_BASH_OBJECT+x} " ]; then
127
- # Ensure the 'final_value' is the same type as specified by the user (WET )
127
+ # Ensure the 'final_value' is the same type as specified by the user (DUPLICATED )
128
128
local __current_object_type=
129
129
if ! __current_object_type=" $( declare -p " $current_object_name " 2> /dev/null) " ; then
130
130
bash_object.util.die ' ERROR_INTERNAL' " The variable '$current_object_name ' does not exist"
@@ -157,7 +157,7 @@ bash_object.traverse-get() {
157
157
esac
158
158
fi
159
159
160
- # Ensure no circular references (WET )
160
+ # Ensure no circular references (DUPLICATED )
161
161
if [ " $old_current_object_name " = " $current_object_name " ]; then
162
162
bash_object.util.die ' ERROR_SELF_REFERENCE' " Virtual object '$current_object_name ' cannot reference itself"
163
163
return
Original file line number Diff line number Diff line change @@ -321,7 +321,7 @@ bash_object.traverse-set() {
321
321
local -n __current_object=" $current_object_name "
322
322
323
323
if [ -n " ${VERIFY_BASH_OBJECT+x} " ]; then
324
- # Ensure the 'final_value' is the same type as specified by the user (WET )
324
+ # Ensure the 'final_value' is the same type as specified by the user (DUPLICATED )
325
325
local __current_object_type=
326
326
if ! __current_object_type=" $( declare -p " $current_object_name " 2> /dev/null) " ; then
327
327
bash_object.util.die ' ERROR_INTERNAL' " The variable '$current_object_name ' does not exist"
@@ -354,7 +354,7 @@ bash_object.traverse-set() {
354
354
esac
355
355
fi
356
356
357
- # Ensure no circular references (WET )
357
+ # Ensure no circular references (DUPLICATED )
358
358
if [ " $old_current_object_name " = " $current_object_name " ]; then
359
359
bash_object.util.die ' ERROR_SELF_REFERENCE' " Virtual object '$current_object_name ' cannot reference itself"
360
360
return
You can’t perform that action at this time.
0 commit comments