Skip to content

Commit 7362500

Browse files
committed
Fixed resolution of expand frame property
1 parent af2cb56 commit 7362500

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/org/objectweb/asm/idea/ShowBytecodeOutlineAction.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ public void run() {
233233
final ASMPluginComponent config = project.getComponent(ASMPluginComponent.class);
234234
if (config.isSkipDebug()) flags = flags | ClassReader.SKIP_DEBUG;
235235
if (config.isSkipFrames()) flags = flags | ClassReader.SKIP_FRAMES;
236-
if (config.isSkipCode()) flags = flags | ClassReader.EXPAND_FRAMES;
236+
if (config.isExpandFrames()) flags = flags | ClassReader.EXPAND_FRAMES;
237237
if (config.isSkipCode()) flags = flags | ClassReader.SKIP_CODE;
238238

239239
reader.accept(visitor, flags);

src/org/objectweb/asm/idea/config/ASMPluginComponent.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ public class ASMPluginComponent implements ProjectComponent, Configurable, Persi
5353
private boolean skipFrames = false;
5454
private boolean skipDebug = false;
5555
private boolean skipCode = false;
56-
private boolean expandFrames;
56+
private boolean expandFrames = false;
5757
private GroovyCodeStyle codeStyle = GroovyCodeStyle.LEGACY;
5858

5959
private ASMPluginConfiguration configDialog;

0 commit comments

Comments
 (0)