mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-20 13:31:28 +07:00
testdata fixed (too wide fonts on linux splitted components into multi rows!)
This commit is contained in:
@@ -3,7 +3,7 @@ class Test {
|
||||
final String method = getParentOfType(String.class, CharSe<caret>quence.class);
|
||||
}
|
||||
|
||||
public static <T extends CharSequence> T getParentOfType(Class<T> aClass, Class<? extends CharSequence>... stopAt) {
|
||||
public static <T extends CharSequence> T getParentOfType(Class<T> a, Class<? extends CharSequence>... stopAt) {
|
||||
return null;
|
||||
}
|
||||
}
|
||||
@@ -145,7 +145,7 @@ public class ParameterInfoTest extends LightCodeInsightTestCase {
|
||||
}
|
||||
|
||||
public void testIgnoreVarargs() throws Exception {
|
||||
doTestPresentation("<html>Class<CharSequence> aClass, <b>Class<? extends CharSequence>... stopAt</b></html>", 1);
|
||||
doTestPresentation("<html>Class<CharSequence> a, <b>Class<? extends CharSequence>... stopAt</b></html>", 1);
|
||||
}
|
||||
|
||||
private void doTestPresentation(String expectedString) {
|
||||
|
||||
Reference in New Issue
Block a user