ignore synthetic access methods starting at access\$000
This commit is contained in:
parent
a8d268f900
commit
26d6259827
1 changed files with 1 additions and 1 deletions
|
|
@ -83,7 +83,7 @@ find_removed_methods() {
|
||||||
local removed_methods=$(diff <(echo "$LATEST_METHODS") <(echo "$CURRENT_METHODS") | grep '^<')
|
local removed_methods=$(diff <(echo "$LATEST_METHODS") <(echo "$CURRENT_METHODS") | grep '^<')
|
||||||
|
|
||||||
# ignore synthetic access methods - these are not available to users and will not break backwards compatibility
|
# ignore synthetic access methods - these are not available to users and will not break backwards compatibility
|
||||||
removed_methods=$(echo "$removed_methods" | grep -v "access\$[1-4]00")
|
removed_methods=$(echo "$removed_methods" | grep -v "access\$[0-9]00")
|
||||||
|
|
||||||
if [[ "$removed_methods" != "" ]]
|
if [[ "$removed_methods" != "" ]]
|
||||||
then
|
then
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue