This is an automated email from the ASF dual-hosted git repository.

michaelsmith pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/impala.git


The following commit(s) were added to refs/heads/master by this push:
     new ab717b8fc IMPALA-14430: Move off org.codehaus.jackson
ab717b8fc is described below

commit ab717b8fcf4413b95ca0b98b2e6f2890fcc3e430
Author: Michael Smith <[email protected]>
AuthorDate: Fri Sep 12 10:42:56 2025 -0700

    IMPALA-14430: Move off org.codehaus.jackson
    
    Removes the last use of org.codehaus.jackson in favor of
    com.fasterxml.jackson.
    
    Change-Id: I3166061a16bdef1ab5936d6e69dc69404b3acee7
    Reviewed-on: http://gerrit.cloudera.org:8080/23420
    Reviewed-by: Impala Public Jenkins <[email protected]>
    Tested-by: Impala Public Jenkins <[email protected]>
---
 fe/src/main/java/org/apache/impala/util/JMXJsonUtil.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/fe/src/main/java/org/apache/impala/util/JMXJsonUtil.java 
b/fe/src/main/java/org/apache/impala/util/JMXJsonUtil.java
index faaba237b..ae1e8447f 100644
--- a/fe/src/main/java/org/apache/impala/util/JMXJsonUtil.java
+++ b/fe/src/main/java/org/apache/impala/util/JMXJsonUtil.java
@@ -18,8 +18,8 @@
 package org.apache.impala.util;
 
 import org.apache.log4j.Logger;
-import org.codehaus.jackson.JsonFactory;
-import org.codehaus.jackson.JsonGenerator;
+import com.fasterxml.jackson.core.JsonFactory;
+import com.fasterxml.jackson.core.JsonGenerator;
 
 import javax.management.AttributeNotFoundException;
 import javax.management.InstanceNotFoundException;

Reply via email to