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

Commit a71fc0a1 authored by The Android Open Source Project's avatar The Android Open Source Project
Browse files
parents 0c2b8bfb 5496ad28
Loading
Loading
Loading
Loading
+2 −10
Original line number Diff line number Diff line
@@ -378,16 +378,8 @@ public class ClassInfo extends DocInfo implements ContainerInfo, Comparable, Sco

    public TagInfo[] deprecatedTags()
    {
        TagInfo[] result = comment().deprecatedTags();
        if (result.length == 0) {
            if (comment().undeprecateTags().length == 0) {
                if (superclass() != null) {
                    result = superclass().deprecatedTags();
                }
            }
        }
        // should we also do the interfaces?
        return result;
        // Should we also do the interfaces?
        return comment().deprecatedTags();
    }

    public MethodInfo[] methods()