mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-13 21:55:01 +07:00
use inter-language modifier fix inside java analysis IDEA-202508
This commit is contained in:
+1
-1
@@ -1,4 +1,4 @@
|
||||
// "Make 'i' static" "true"
|
||||
// "Make 'a.i' static" "true"
|
||||
import java.io.*;
|
||||
|
||||
class a {
|
||||
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
// "Make 'foo' static" "true"
|
||||
// "Make 'F.foo' static" "true"
|
||||
abstract class F {
|
||||
static void foo() {
|
||||
}
|
||||
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
// "Make 'f' static" "true"
|
||||
// "Make 'Foo.f' static" "true"
|
||||
public class Foo {
|
||||
int g;
|
||||
static int f;
|
||||
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
// "Make 'i' static" "true"
|
||||
// "Make 'a.i' static" "true"
|
||||
import java.io.*;
|
||||
|
||||
class a {
|
||||
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
// "Make 'foo' static" "true"
|
||||
// "Make 'F.foo' static" "true"
|
||||
abstract class F {
|
||||
abstract void foo();
|
||||
}
|
||||
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
// "Make 'f' static" "true"
|
||||
// "Make 'Foo.f' static" "true"
|
||||
public class Foo {
|
||||
int g,f;
|
||||
static void foo() {
|
||||
|
||||
Reference in New Issue
Block a user