Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ private static int findMostSpecificMethod(

//
// Find the most specific method based on the parameters. On the first pass, prohibit
// auto-(un)boxing and variable arity (see JLS §15.12.2.2).
// auto-(un)boxing and variable arity (see JLS 15.12.2.2).
//
int result = findMostSpecific(
m1.getParameters(),
Expand All @@ -229,7 +229,7 @@ private static int findMostSpecificMethod(

//
// If the first attempt produced an ambiguous result, try again with boxing conversions
// allowed (see JLS §15.12.2.3).
// allowed (see JLS 15.12.2.3).
//
if (result == 0) {
result = findMostSpecific(
Expand All @@ -247,7 +247,7 @@ private static int findMostSpecificMethod(

//
// If the second attempt produced an ambiguous result, try again with both boxing
// conversions and variable arity allowed (see JLS §15.12.2.4).
// conversions and variable arity allowed (see JLS 15.12.2.4).
//
if (result == 0) {
result = findMostSpecific(
Expand Down