Skip to content
This repository has been archived by the owner on Apr 13, 2023. It is now read-only.

Commit

Permalink
compiler-java: wip
Browse files Browse the repository at this point in the history
Part of #5734
  • Loading branch information
tombentley committed Jan 7, 2016
1 parent 435cbd4 commit 3dbe542
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1490,7 +1490,7 @@ private boolean hasField(Declaration member) {
&& (value.isShared() || value.isCaptured())) {
return true;
}
} else if (member instanceof Function) {
} /*else if (member instanceof Function) {
Function function = (Function)member;
if (function.isShortcutRefinement()
Expand All @@ -1501,7 +1501,7 @@ private boolean hasField(Declaration member) {
|| function.isActual())) {
return true;
}
}
}*/
return false;
}

Expand Down

0 comments on commit 3dbe542

Please sign in to comment.