This is an automated email from the ASF dual-hosted git repository. yihua pushed a commit to branch branch-0.x in repository https://gitbox.apache.org/repos/asf/hudi.git
commit 9a0349828e6c6674865976501af42d0c6bc95d23 Author: Y Ethan Guo <[email protected]> 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 68cc5c131db..292c2b41946 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 @@ -123,14 +123,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()); } /**
