lvc/japi-compliance-checker

-skip-deprecated skips all methods/variables following the deprecated variable

SainathSharmadha opened this issue · 0 comments

@deprecated
public static final String var1 = "str1"

void method1(long age);
void method2(long age);

When -skip-deprecated is provided, expected to ignore only var1 but ignores method1 and method2 too.