Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 1c5e44e9 authored by Michael Wright's avatar Michael Wright Committed by android-build-merger
Browse files

Merge "Merge "Handle removed classes when looking for deprecated at birth...

Merge "Merge "Handle removed classes when looking for deprecated at birth APIs." into qt-dev am: b0815a51" into qt-dev-plus-aosp
am: 931711ce

Change-Id: I708e6c41416cd43644b2361c467deb3a4d14363c
parents 7180fa79 931711ce
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -2132,6 +2132,10 @@ def show_deprecations_at_birth(cur, prev):

    # Remove all existing things so we're left with new
    for prev_clazz in prev.values():
        if prev_clazz.fullname not in cur:
            # The class was removed this release; we can safely ignore it.
            continue

        cur_clazz = cur[prev_clazz.fullname]
        if not is_interesting(cur_clazz): continue