forked from openkylin/platform_build
Merge branch 'master' of git://android.git.kernel.org/platform/build
This commit is contained in:
commit
a71fc0a155
|
@ -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()
|
||||
|
|
Loading…
Reference in New Issue