From 8e1abd101aec4f9a8cd691e0fc4cfd391bf4ad4f Mon Sep 17 00:00:00 2001 From: Jiri Date: Sat, 10 Jul 2021 11:24:33 +0200 Subject: [PATCH] =?UTF-8?q?Removed=20=C2=A7=20signs=20to=20pass=20jdk11=20?= =?UTF-8?q?xlint?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit xlint for javadoc is requiring clean html in javadoc, this § must bre repalced by § or removed --- .../java/com/strobel/assembler/metadata/MethodBinder.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Procyon.CompilerTools/src/main/java/com/strobel/assembler/metadata/MethodBinder.java b/Procyon.CompilerTools/src/main/java/com/strobel/assembler/metadata/MethodBinder.java index ac98d761..d79afb32 100644 --- a/Procyon.CompilerTools/src/main/java/com/strobel/assembler/metadata/MethodBinder.java +++ b/Procyon.CompilerTools/src/main/java/com/strobel/assembler/metadata/MethodBinder.java @@ -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(), @@ -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( @@ -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(