This is an automated email from the ASF dual-hosted git repository. jonvex pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/hudi.git
The following commit(s) were added to refs/heads/master by this push: new 7f20e108897 [MINOR] Rename location to path in `makeQualified` (#11037) 7f20e108897 is described below commit 7f20e108897f593e5d92181f071bc40fa15391f4 Author: Y Ethan Guo <ethan.guoyi...@gmail.com> AuthorDate: Tue Apr 16 18:30:11 2024 -0700 [MINOR] Rename location to path in `makeQualified` (#11037) --- .../src/main/java/org/apache/hudi/common/fs/FSUtils.java | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/hudi-common/src/main/java/org/apache/hudi/common/fs/FSUtils.java b/hudi-common/src/main/java/org/apache/hudi/common/fs/FSUtils.java index 44e153dcce0..eb67327930f 100644 --- a/hudi-common/src/main/java/org/apache/hudi/common/fs/FSUtils.java +++ b/hudi-common/src/main/java/org/apache/hudi/common/fs/FSUtils.java @@ -125,14 +125,14 @@ public class FSUtils { } /** - * Makes location qualified with {@link HoodieStorage}'s URI. + * Makes path qualified with {@link HoodieStorage}'s URI. * - * @param storage instance of {@link HoodieStorage}. - * @param location to be qualified. - * @return qualified location, prefixed with the URI of the target HoodieStorage object provided. + * @param storage instance of {@link HoodieStorage}. + * @param path to be qualified. + * @return qualified path, prefixed with the URI of the target HoodieStorage object provided. */ - public static StoragePath makeQualified(HoodieStorage storage, StoragePath location) { - return location.makeQualified(storage.getUri()); + public static StoragePath makeQualified(HoodieStorage storage, StoragePath path) { + return path.makeQualified(storage.getUri()); } /**