Skip to content

Commit

Permalink
Moving operators to the beginning of line, as suggested.
Browse files Browse the repository at this point in the history
  • Loading branch information
lahodaj committed Oct 30, 2024
1 parent 94b8bf6 commit 9ae10e2
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -416,9 +416,9 @@ private Builder readModuleAttribute(DataInput in, ConstantPool cpool, int major,
// requires static java.base is illegal unless:
// - the major version is 53 (JDK 9), or:
if (major >= 54
&& ((mods.contains(Requires.Modifier.TRANSITIVE) &&
!isPreview &&
!"java.se".equals(mn))
&& ((mods.contains(Requires.Modifier.TRANSITIVE)
&& !isPreview
&& !"java.se".equals(mn))
|| mods.contains(Requires.Modifier.STATIC))) {
String flagName;
if (mods.contains(Requires.Modifier.STATIC)) {
Expand Down

0 comments on commit 9ae10e2

Please sign in to comment.