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) {
return this.baseStore.list(pattern);
list(type) {
return this.baseStore.list(type);
}
delete(type, url) {
return this.baseStore.delete(type, url);
}
count(pattern) {
return this.baseStore.count(pattern);
count(type) {
return this.baseStore.count(type);
}
close() {