We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6a6c1f4 commit 044979fCopy full SHA for 044979f
+schemes/loadCache.m
@@ -15,7 +15,6 @@
15
end
16
17
if isempty(fileList)
18
- fprintf('Could not find namespace in `%s`', namespaceDir);
19
Cache = struct([]);
20
return;
21
+spec/generate.m
@@ -28,9 +28,5 @@
28
mkdir(namespacePath);
29
30
cachePath = fullfile(namespacePath, [NamespaceInfo.name '.mat']);
31
-fprintf('Saving Namespace `%s`\n', NamespaceInfo.name);
32
save(cachePath, '-struct', 'NamespaceInfo');
33
-CacheFiles = dir(namespacePath);
34
-CacheFiles = CacheFiles(~[CacheFiles.isdir]);
35
-fprintf('Current cache files: \n%s\n', strjoin({CacheFiles.name}, newline));
36
0 commit comments