Make argument names consistent

This commit is contained in:
William Bartholomew 2017-03-15 12:28:41 -07:00
Родитель 11b3e3a013
Коммит fff2a743c2
1 изменённых файлов: 4 добавлений и 4 удалений

Просмотреть файл

@ -56,16 +56,16 @@ class AzureTableMappingStore {
}); });
} }
list(pattern) { list(type) {
return this.baseStore.list(pattern); return this.baseStore.list(type);
} }
delete(type, url) { delete(type, url) {
return this.baseStore.delete(type, url); return this.baseStore.delete(type, url);
} }
count(pattern) { count(type) {
return this.baseStore.count(pattern); return this.baseStore.count(type);
} }
close() { close() {