You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2018/02/06 01:02:11 UTC

commons-testing git commit: Use final.

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 <ga...@gmail.com>
Authored: Mon Feb 5 18:02:08 2018 -0700
Committer: Gary Gregory <ga...@gmail.com>
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;
     }