Coding style cleanup

This commit is contained in:
Alexander Bock
2020-02-14 19:37:06 +01:00
parent 166eee8b28
commit 5e29145395
119 changed files with 643 additions and 348 deletions
@@ -329,7 +329,8 @@ void RenderableKameleonVolume::load() {
);
if (FileSys.fileExists(cachePath)) {
loadRaw(cachePath);
} else {
}
else {
loadFromPath(_sourcePath);
storeRaw(cachePath);
}
@@ -351,7 +352,8 @@ void RenderableKameleonVolume::loadFromPath(const std::string& path) {
);
if (extension == "cdf") {
loadCdf(path);
} else {
}
else {
loadRaw(path);
}
}