Comments
Patch
@@ -93,10 +93,6 @@ parsers = policy.importmod(r'parsers')
_calcsize = struct.calcsize
propertycache = util.propertycache
-# the obsolete feature is not mature enough to be enabled by default.
-# you have to rely on third party extension extension to enable this.
-_enabled = False
-
# Options for obsolescence
createmarkersopt = 'createmarkers'
allowunstableopt = 'allowunstable'
@@ -124,11 +120,6 @@ def _getoptionvalue(repo, option):
if 'all' in result:
return True
- # For migration purposes, temporarily return true if the config hasn't
- # been set but _enabled is true.
- if len(result) == 0 and _enabled:
- return True
-
# Temporary hack for next check
newconfig = repo.ui.config('experimental', 'evolution.createmarkers')
if newconfig: