Skip to content

Commit

Permalink
#96. fix type-o
Browse files Browse the repository at this point in the history
  • Loading branch information
augustearth committed Aug 12, 2022
1 parent fcc256f commit c746e81
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,15 @@ abstract class VineMethod {
// STATIC FIELDS
///////////////////////////////////////////////////////////////////////////

static final String DEFAULT_CACHE_MORE_CONFIG_KEY = 'carnival.cache-mode'
static final String DEFAULT_CACHE_MODE_CONFIG_KEY = 'carnival.cache-mode'


///////////////////////////////////////////////////////////////////////////
// STATIC METHODS
///////////////////////////////////////////////////////////////////////////

static public CacheMode defaultCacheMode() {
String str = Defaults.getConfigValue(DEFAULT_CACHE_MORE_CONFIG_KEY)
String str = Defaults.getConfigValue(DEFAULT_CACHE_MODE_CONFIG_KEY)
if (str == null) return CacheMode.IGNORE
CacheMode cm = Enum.valueOf(CacheMode, str)
if (cm) return cm
Expand Down

0 comments on commit c746e81

Please sign in to comment.