mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-07 05:09:37 +07:00
replace method duplicates: qualified/unqualified static access ( IDEA-23412 )
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
public class aa {
|
||||
public static boolean isVisualUpdate(int update_type) {
|
||||
return a.blabla(update_type);
|
||||
}
|
||||
}
|
||||
|
||||
interface Iaaa {
|
||||
int FULL_QUOTE_VISUAL = 0;
|
||||
}
|
||||
|
||||
class a implements Iaaa {
|
||||
int update_type = 8;
|
||||
|
||||
public static boolean blabla(int update_type) {
|
||||
return update_type <= FULL_QUOTE_VISUAL;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user