mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
IDEA-206175 Watch variables: blue screen lag - added a limit
This commit is contained in:
+1
-1
@@ -41,7 +41,7 @@ public class XDebuggerHistoryManager implements PersistentStateComponent<Element
|
||||
}
|
||||
|
||||
public boolean addRecentExpression(@NotNull @NonNls String id, @Nullable XExpression expression) {
|
||||
if (XDebuggerUtilImpl.isEmptyExpression(expression)) {
|
||||
if (XDebuggerUtilImpl.isEmptyExpression(expression) || expression.getExpression().length() > 100000) {
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user