mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-06 03:21:12 +07:00
CPP-16098 - Lags during inplace rename typing
- call `commitDocument` explicitly in cases when `calculateQuickResult` can redirect it's calculation to heavy `calculateResult` GitOrigin-RevId: 41f0c47c57f4528d7d7a25208024ec28bb8c2e12
This commit is contained in:
committed by
intellij-monorepo-bot
parent
dc1a52762e
commit
e3ca319824
@@ -0,0 +1,16 @@
|
||||
|
||||
class Test {
|
||||
|
||||
String use(String[] list) {
|
||||
for(String str : list) {
|
||||
String s = str;
|
||||
if(s != null) {
|
||||
s = s.trim();
|
||||
if (s.isEmpty()) {
|
||||
continue;
|
||||
}
|
||||
}
|
||||
System.out.println("Ok string: "+str);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user