mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-10 13:17:09 +07:00
migration: ensure migrated refs are shortened (IDEA-163298)
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
import aaa.*;
|
||||
import bbb.Test;
|
||||
|
||||
public class C {
|
||||
@Test
|
||||
void foo(){}
|
||||
|
||||
@Test
|
||||
void bar(){}
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
import bbb.Test;
|
||||
public class C1 {
|
||||
@Test
|
||||
void foo(){}
|
||||
|
||||
@Test
|
||||
void bar(){}
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
import aaa.*;
|
||||
public class C {
|
||||
@Test
|
||||
void foo(){}
|
||||
|
||||
@Test
|
||||
void bar(){}
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
import aaa.Test;
|
||||
public class C1 {
|
||||
@Test
|
||||
void foo(){}
|
||||
|
||||
@Test
|
||||
void bar(){}
|
||||
}
|
||||
Reference in New Issue
Block a user