From 808907d0ab40b8c523283974be17c9d9654b3609 Mon Sep 17 00:00:00 2001 From: Jeff Yemin <jeff.yemin@10gen.com> Date: Thu, 9 Jul 2015 19:45:48 -0400 Subject: [PATCH] Changed visibility of static field from protected to private in final OptionsSupport class for MongoDB. --- mongodb/src/main/java/com/yahoo/ycsb/db/OptionsSupport.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mongodb/src/main/java/com/yahoo/ycsb/db/OptionsSupport.java b/mongodb/src/main/java/com/yahoo/ycsb/db/OptionsSupport.java index b8aa6f4d..a2e926d3 100644 --- a/mongodb/src/main/java/com/yahoo/ycsb/db/OptionsSupport.java +++ b/mongodb/src/main/java/com/yahoo/ycsb/db/OptionsSupport.java @@ -30,7 +30,7 @@ import java.util.Properties; public final class OptionsSupport { /** Value for an unavailable property. */ - protected static final String UNAVAILABLE = "n/a"; + private static final String UNAVAILABLE = "n/a"; /** * Updates the URL with the appropriate attributes if legacy properties are -- GitLab