Skip to content

Commit b0ec0a0

Browse files
committed
bugfix
1 parent bc34815 commit b0ec0a0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/intellij/plugins/haxe/model/HaxeMethodModel.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,7 @@ public HaxeMethodModel getAncestorMethod(@Nullable HaxeGenericResolver resolver)
302302
}
303303

304304
public boolean isMacroMember() {
305-
return isMacro() | !isStatic();
305+
return isMacro() && !isStatic();
306306
}
307307
}
308308

0 commit comments

Comments
 (0)