This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-vfs.git
The following commit(s) were added to refs/heads/master by this push: new 3a9936c4 Upper case HTTP 3a9936c4 is described below commit 3a9936c4c95a692f0557f66149c8e13d2842196c Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Fri Sep 22 09:46:41 2023 -0400 Upper case HTTP --- .../src/main/java/org/apache/commons/vfs2/provider/URLFileName.java | 2 +- commons-vfs2/src/main/java/org/apache/commons/vfs2/util/URIUtils.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/URLFileName.java b/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/URLFileName.java index 7511e49a..8e6085a4 100644 --- a/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/URLFileName.java +++ b/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/URLFileName.java @@ -24,7 +24,7 @@ import org.apache.commons.vfs2.FileType; /** * A file name that represents URL. - * @deprecated Use {@link GenericURLFileName} as it doesn't depend on Http Client v3 API directly. + * @deprecated Use {@link GenericURLFileName} as it doesn't depend on HTTP Client v3 API directly. */ @Deprecated public class URLFileName extends GenericFileName { diff --git a/commons-vfs2/src/main/java/org/apache/commons/vfs2/util/URIUtils.java b/commons-vfs2/src/main/java/org/apache/commons/vfs2/util/URIUtils.java index df529a79..c9c5bf0f 100644 --- a/commons-vfs2/src/main/java/org/apache/commons/vfs2/util/URIUtils.java +++ b/commons-vfs2/src/main/java/org/apache/commons/vfs2/util/URIUtils.java @@ -100,7 +100,7 @@ public class URIUtils { * <p> * This was forked from some needed methods such as {@code #encodeUrl(...)} and {@code #hexDigit(int)} * in {@code org.apache.commons.codec.net.URLCodec}, as commons-codec library cannot be pulled in transitively - * via Http Client v3 library any more. + * via HTTP Client v3 library any more. * </p> */ private static final class URLCodecUtils {