diff options
Diffstat (limited to 'xmake/core/project/cache.lua')
| -rw-r--r-- | xmake/core/project/cache.lua | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/xmake/core/project/cache.lua b/xmake/core/project/cache.lua index 4275fbeb8..9d72eaa3d 100644 --- a/xmake/core/project/cache.lua +++ b/xmake/core/project/cache.lua @@ -88,22 +88,16 @@ end -- get the value function cache:get(name) - - -- get it return self._CACHEDATA[name] end -- set the value function cache:set(name, value) - - -- set it self._CACHEDATA[name] = value end -- clear all function cache:clear() - - -- clear it self._CACHEDATA = {__version = xmake._VERSION_SHORT} end |
