mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
fixed wrong negation
GitOrigin-RevId: 109fb48db08ebb033c2921d4a3e9488f1f165977
This commit is contained in:
committed by
intellij-monorepo-bot
parent
3c141fc7c7
commit
3e128dbbad
@@ -1,4 +1,4 @@
|
||||
// Copyright 2000-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file.
|
||||
// Copyright 2000-2020 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file.
|
||||
package com.intellij.debugger.jdi;
|
||||
|
||||
import com.intellij.debugger.SourcePosition;
|
||||
@@ -324,7 +324,7 @@ public class LocalVariablesUtil {
|
||||
throw e;
|
||||
}
|
||||
catch (Exception e) {
|
||||
if (vm.canBeModified()) { // do not care in read only vms
|
||||
if (!vm.canBeModified()) { // do not care in read only vms
|
||||
LOG.debug(e);
|
||||
}
|
||||
else {
|
||||
|
||||
Reference in New Issue
Block a user