fixed wrong negation

GitOrigin-RevId: 109fb48db08ebb033c2921d4a3e9488f1f165977
This commit is contained in:
Egor Ushakov
2020-05-09 05:25:10 +00:00
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 {