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 14284e6 commit 3126b37Copy full SHA for 3126b37
REQUIRE
@@ -2,4 +2,5 @@ julia 0.7
2
Compat 0.8
3
DataStructures
4
JLD2
5
-FileIO
+FileIO
6
+Suppressor
src/ReusableFunctions.jl
@@ -39,6 +39,7 @@ import JLD2
39
import FileIO
40
import DataStructures
41
import Compat
42
+import Suppressor
43
import Compat.String
44
45
"Reset restarts counter"
@@ -77,7 +78,7 @@ end
77
78
"Load JLD result file"
79
function loadresultfile(filename::String; key::String="result")
80
try
- result = FileIO.load(filename, key)
81
+ @Suppressor.suppress result = FileIO.load(filename, key)
82
return result
83
catch
84
return nothing
0 commit comments