You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hive.apache.org by jc...@apache.org on 2020/08/11 01:08:40 UTC

[hive] branch master updated: HIVE-23996: Remove unused line in UDFArgumentException (Guo Philipse reviewed by Peter Vary, Jesus Camacho Rodriguez)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new af911c9  HIVE-23996: Remove unused line in UDFArgumentException (Guo Philipse reviewed by Peter Vary, Jesus Camacho Rodriguez)
af911c9 is described below

commit af911c9fe0ff3bb49d80f6c0109d30f5e1046849
Author: GuoPhilipse <46...@users.noreply.github.com>
AuthorDate: Tue Aug 11 09:08:30 2020 +0800

    HIVE-23996: Remove unused line in UDFArgumentException (Guo Philipse reviewed by Peter Vary, Jesus Camacho Rodriguez)
    
    Closes apache/hive#1363
---
 udf/src/java/org/apache/hadoop/hive/ql/exec/UDFArgumentException.java | 1 -
 1 file changed, 1 deletion(-)

diff --git a/udf/src/java/org/apache/hadoop/hive/ql/exec/UDFArgumentException.java b/udf/src/java/org/apache/hadoop/hive/ql/exec/UDFArgumentException.java
index 0708e01..d25dbbb 100644
--- a/udf/src/java/org/apache/hadoop/hive/ql/exec/UDFArgumentException.java
+++ b/udf/src/java/org/apache/hadoop/hive/ql/exec/UDFArgumentException.java
@@ -84,7 +84,6 @@ public class UDFArgumentException extends SemanticException {
       for (Method m: methods) {
         Type[] types = m.getGenericParameterTypes();
         sb.append("_FUNC_(");
-        List<String> typeNames = new ArrayList<String>(types.length);
         for (int t = 0; t < types.length; t++) {
           if (t > 0) {
             sb.append(", ");