mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-27 22:20:54 +07:00
Fixes IDEA-274311 Applying the completion adds a redundant comma on the next line GitOrigin-RevId: 3f4a55aff4a640e9e40e7a9c242611f0bb95475d
10 lines
222 B
Java
10 lines
222 B
Java
import java.util.*;
|
|
|
|
public class CompletionShouldNotAddExtraComma {
|
|
List<String> getResult(String str) {
|
|
if (str == null) return Collections.empty<caret>
|
|
Integer a = 1;
|
|
return Collections.emptyList();
|
|
}
|
|
}
|