From commits-return-22381-archive-asf-public=cust-asf.ponee.io@accumulo.apache.org Tue Dec 4 04:28:32 2018 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx-eu-01.ponee.io (Postfix) with SMTP id 2164118067A for ; Tue, 4 Dec 2018 04:28:31 +0100 (CET) Received: (qmail 43514 invoked by uid 500); 4 Dec 2018 03:28:31 -0000 Mailing-List: contact commits-help@accumulo.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@accumulo.apache.org Delivered-To: mailing list commits@accumulo.apache.org Received: (qmail 43493 invoked by uid 99); 4 Dec 2018 03:28:31 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 04 Dec 2018 03:28:31 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id 5A32480612; Tue, 4 Dec 2018 03:28:30 +0000 (UTC) Date: Tue, 04 Dec 2018 03:28:30 +0000 To: "commits@accumulo.apache.org" Subject: [accumulo] branch 1.9 updated: Fix warnings by adding missing generic types MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Message-ID: <154389411026.15885.3973031621001952889@gitbox.apache.org> From: ctubbsii@apache.org X-Git-Host: gitbox.apache.org X-Git-Repo: accumulo X-Git-Refname: refs/heads/1.9 X-Git-Reftype: branch X-Git-Oldrev: 1be829848ffc195dbc8c3fa42a4f354d2678645e X-Git-Newrev: a5e341c89141024c026e4f70a39ee8aba941a54a X-Git-Rev: a5e341c89141024c026e4f70a39ee8aba941a54a X-Git-NotificationType: ref_changed_plus_diff X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated This is an automated email from the ASF dual-hosted git repository. ctubbsii pushed a commit to branch 1.9 in repository https://gitbox.apache.org/repos/asf/accumulo.git The following commit(s) were added to refs/heads/1.9 by this push: new a5e341c Fix warnings by adding missing generic types a5e341c is described below commit a5e341c89141024c026e4f70a39ee8aba941a54a Author: Christopher Tubbs AuthorDate: Mon Dec 3 22:03:27 2018 -0500 Fix warnings by adding missing generic types --- .../accumulo/core/client/ClientConfiguration.java | 17 +++++------------ 1 file changed, 5 insertions(+), 12 deletions(-) diff --git a/core/src/main/java/org/apache/accumulo/core/client/ClientConfiguration.java b/core/src/main/java/org/apache/accumulo/core/client/ClientConfiguration.java index 250bcd4..1651133 100644 --- a/core/src/main/java/org/apache/accumulo/core/client/ClientConfiguration.java +++ b/core/src/main/java/org/apache/accumulo/core/client/ClientConfiguration.java @@ -1038,9 +1038,8 @@ public class ClientConfiguration extends CompositeConfiguration { * Accumulo API */ @Deprecated - @SuppressWarnings("rawtypes") @Override - public Collection getConfigurationListeners() { + public Collection getConfigurationListeners() { return super.getConfigurationListeners(); } @@ -1079,9 +1078,8 @@ public class ClientConfiguration extends CompositeConfiguration { * Accumulo API */ @Deprecated - @SuppressWarnings("rawtypes") @Override - public Collection getErrorListeners() { + public Collection getErrorListeners() { return super.getErrorListeners(); } @@ -1145,7 +1143,6 @@ public class ClientConfiguration extends CompositeConfiguration { return super.getInteger(key, defaultValue); } - @SuppressWarnings("unchecked") @Override public Iterator getKeys() { return super.getKeys(); @@ -1156,7 +1153,6 @@ public class ClientConfiguration extends CompositeConfiguration { * Accumulo API */ @Deprecated - @SuppressWarnings("unchecked") @Override public Iterator getKeys(String key) { return super.getKeys(key); @@ -1167,9 +1163,8 @@ public class ClientConfiguration extends CompositeConfiguration { * Accumulo API */ @Deprecated - @SuppressWarnings("rawtypes") @Override - public List getList(String key) { + public List getList(String key) { return super.getList(key); } @@ -1178,9 +1173,8 @@ public class ClientConfiguration extends CompositeConfiguration { * Accumulo API */ @Deprecated - @SuppressWarnings("rawtypes") @Override - public List getList(String key, List defaultValue) { + public List getList(String key, List defaultValue) { return super.getList(key, defaultValue); } @@ -1344,9 +1338,8 @@ public class ClientConfiguration extends CompositeConfiguration { * Accumulo API */ @Deprecated - @SuppressWarnings("rawtypes") @Override - protected String interpolateHelper(String base, List priorVariables) { + protected String interpolateHelper(String base, List priorVariables) { return super.interpolateHelper(base, priorVariables); }