Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 97FBE200BAE for ; Fri, 28 Oct 2016 18:40:23 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 969F7160AE4; Fri, 28 Oct 2016 16:40:23 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 0F1E7160ACA for ; Fri, 28 Oct 2016 18:40:22 +0200 (CEST) Received: (qmail 61170 invoked by uid 500); 28 Oct 2016 16:40:20 -0000 Mailing-List: contact commits-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@commons.apache.org Delivered-To: mailing list commits@commons.apache.org Received: (qmail 61063 invoked by uid 99); 28 Oct 2016 16:40:20 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 28 Oct 2016 16:40:20 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 75875E05E1; Fri, 28 Oct 2016 16:40:20 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: pascalschumacher@apache.org To: commits@commons.apache.org Message-Id: <6ea52d077a46428cb4c0bb0d22680177@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [lang] remove unnecessary @SuppressWarnings("unchecked") from ObjectUtilsTest#testMode Date: Fri, 28 Oct 2016 16:40:20 +0000 (UTC) archived-at: Fri, 28 Oct 2016 16:40:23 -0000 Repository: commons-lang Updated Branches: refs/heads/master 4733cb5b7 -> 3f103f8c9 remove unnecessary @SuppressWarnings("unchecked") from ObjectUtilsTest#testMode Project: http://git-wip-us.apache.org/repos/asf/commons-lang/repo Commit: http://git-wip-us.apache.org/repos/asf/commons-lang/commit/3f103f8c Tree: http://git-wip-us.apache.org/repos/asf/commons-lang/tree/3f103f8c Diff: http://git-wip-us.apache.org/repos/asf/commons-lang/diff/3f103f8c Branch: refs/heads/master Commit: 3f103f8c9b72ef6ada41684c122ef7bd3cc90d22 Parents: 4733cb5 Author: pascalschumacher Authored: Fri Oct 28 18:40:01 2016 +0200 Committer: pascalschumacher Committed: Fri Oct 28 18:40:01 2016 +0200 ---------------------------------------------------------------------- src/test/java/org/apache/commons/lang3/ObjectUtilsTest.java | 1 - 1 file changed, 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/commons-lang/blob/3f103f8c/src/test/java/org/apache/commons/lang3/ObjectUtilsTest.java ---------------------------------------------------------------------- diff --git a/src/test/java/org/apache/commons/lang3/ObjectUtilsTest.java b/src/test/java/org/apache/commons/lang3/ObjectUtilsTest.java index ad93e29..54f093e 100644 --- a/src/test/java/org/apache/commons/lang3/ObjectUtilsTest.java +++ b/src/test/java/org/apache/commons/lang3/ObjectUtilsTest.java @@ -465,7 +465,6 @@ public class ObjectUtilsTest { ObjectUtils.median(new CharSequenceComparator()); } - @SuppressWarnings("unchecked") @Test public void testMode() { assertNull(ObjectUtils.mode((Object[]) null));