Toggle navigation
Toggle navigation
This project
Loading...
Sign in
尹诚
/
Mapbox-iOS-SDK
·
Commits
Go to a project
GitLab
Go to dashboard
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
0
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Email Patches
Plain Diff
Browse Files
Authored by
Thomas Rasch
2011-03-17 14:19:39 +0100
Commit
fc7f7192097322bf2d627d96f208f06019912743
1 parent
a078aa78
o Bugfix: Don't try to add the memory cache to the caches list
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletions
MapView/Map/RMTileCache.m
MapView/Map/RMTileCache.m
View file @
fc7f719
...
...
@@ -65,8 +65,10 @@
NSString
*
type
=
[
cfg
valueForKey
:
@"type"
];
if
([
@"memory-cache"
isEqualToString
:
type
])
if
([
@"memory-cache"
isEqualToString
:
type
])
{
memoryCache
=
[[
self
memoryCacheWithConfig
:
cfg
]
retain
];
continue
;
}
if
([
@"db-cache"
isEqualToString
:
type
])
newCache
=
[
self
databaseCacheWithConfig
:
cfg
];
...
...
Please
register
or
login
to post a comment