From commits-return-61294-archive-asf-public=cust-asf.ponee.io@commons.apache.org Tue Feb 6 02:02:13 2018 Return-Path: X-Original-To: archive-asf-public@eu.ponee.io Delivered-To: archive-asf-public@eu.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by mx-eu-01.ponee.io (Postfix) with ESMTP id 9279D180647 for ; Tue, 6 Feb 2018 02:02:13 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id 825C7160C5A; Tue, 6 Feb 2018 01:02:13 +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 CB3F0160C3B for ; Tue, 6 Feb 2018 02:02:12 +0100 (CET) Received: (qmail 21826 invoked by uid 500); 6 Feb 2018 01:02:11 -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 21816 invoked by uid 99); 6 Feb 2018 01:02:11 -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; Tue, 06 Feb 2018 01:02:11 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id BF6F0E01EC; Tue, 6 Feb 2018 01:02:11 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: ggregory@apache.org To: commits@commons.apache.org Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: commons-testing git commit: Use final. Date: Tue, 6 Feb 2018 01:02:11 +0000 (UTC) Repository: commons-testing Updated Branches: refs/heads/master 945be5fa9 -> 8abb9759d Use final. Project: http://git-wip-us.apache.org/repos/asf/commons-testing/repo Commit: http://git-wip-us.apache.org/repos/asf/commons-testing/commit/8abb9759 Tree: http://git-wip-us.apache.org/repos/asf/commons-testing/tree/8abb9759 Diff: http://git-wip-us.apache.org/repos/asf/commons-testing/diff/8abb9759 Branch: refs/heads/master Commit: 8abb9759d20d504684af2980f4cc85e2c771b211 Parents: 945be5f Author: Gary Gregory Authored: Mon Feb 5 18:02:08 2018 -0700 Committer: Gary Gregory Committed: Mon Feb 5 18:02:08 2018 -0700 ---------------------------------------------------------------------- .../org/apache/commons/testing/junit4/mongodb/MongoDbTestRule.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/commons-testing/blob/8abb9759/commons-testing-junit4-mongodb/src/main/java/org/apache/commons/testing/junit4/mongodb/MongoDbTestRule.java ---------------------------------------------------------------------- diff --git a/commons-testing-junit4-mongodb/src/main/java/org/apache/commons/testing/junit4/mongodb/MongoDbTestRule.java b/commons-testing-junit4-mongodb/src/main/java/org/apache/commons/testing/junit4/mongodb/MongoDbTestRule.java index 9873466..617df65 100644 --- a/commons-testing-junit4-mongodb/src/main/java/org/apache/commons/testing/junit4/mongodb/MongoDbTestRule.java +++ b/commons-testing-junit4-mongodb/src/main/java/org/apache/commons/testing/junit4/mongodb/MongoDbTestRule.java @@ -70,7 +70,7 @@ public class MongoDbTestRule implements TestRule { this(portSystemPropertyName, DEFAULT_MONGODB_VERSION); } - public MongoDbTestRule(final String portSystemPropertyName, Main mongoDbVersion) { + public MongoDbTestRule(final String portSystemPropertyName, final Main mongoDbVersion) { this.portSystemPropertyName = Objects.requireNonNull(portSystemPropertyName, "portSystemPropertyName"); this.mongoDbVersion = mongoDbVersion; }