Skip to content

Commit

Permalink
[CORAL-LOG] Fix Checkstyle.
Browse files Browse the repository at this point in the history
  • Loading branch information
slfan1989 committed Feb 4, 2024
1 parent a3cddec commit 2e08234
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Copyright 2020-2023 LinkedIn Corporation. All rights reserved.
* Copyright 2020-2024 LinkedIn Corporation. All rights reserved.
* Licensed under the BSD-2 Clause license.
* See LICENSE in the project root for license information.
*/
Expand Down Expand Up @@ -128,8 +128,7 @@ private ResolveReport getDependencies(String udfClassName, DependencySpec depend
try {
final ResolveReport report = _ivyInstance.resolve(md, resolveOptions);
if (report.hasError()) {
LOG.warn("Unable to fetch dependencies for UDF {}: {}",
udfClassName, report.getAllProblemMessages());
LOG.warn("Unable to fetch dependencies for UDF {}: {}", udfClassName, report.getAllProblemMessages());
}
return report;
} catch (ParseException | IOException e) {
Expand Down

0 comments on commit 2e08234

Please sign in to comment.