From 92308ac83f976b04d5a639cc8260999dbf799edb Mon Sep 17 00:00:00 2001 From: rstoyanchev Date: Fri, 27 Sep 2024 15:07:54 +0100 Subject: [PATCH] Polishing in UrlParser --- .../springframework/web/util/UrlParser.java | 658 ++++++++++-------- 1 file changed, 377 insertions(+), 281 deletions(-) diff --git a/spring-web/src/main/java/org/springframework/web/util/UrlParser.java b/spring-web/src/main/java/org/springframework/web/util/UrlParser.java index 599d348d6a..8c0667e482 100644 --- a/spring-web/src/main/java/org/springframework/web/util/UrlParser.java +++ b/spring-web/src/main/java/org/springframework/web/util/UrlParser.java @@ -36,12 +36,12 @@ import org.springframework.lang.Nullable; import org.springframework.util.Assert; /** - * Implementation of the URL parser from the Living URL standard. + * Implementation of the + * URL parsing algorithm + * of the WhatWG URL Living standard. * - *

All comments in this class refer to parts of the - * parsing algorithm. - * This implementation differs from the one defined in the specification in - * these areas: + *

Comments in this class correlate to the parsing algorithm. + * The implementation differs from the spec in the following ways: *