Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
mantidproject
mantid
Commits
146181c5
Commit
146181c5
authored
Apr 14, 2020
by
Nick Draper
Browse files
remove a pointless internal variable
parent
84fdb9a7
Changes
2
Hide whitespace changes
Inline
Side-by-side
Framework/API/src/Algorithm.cpp
View file @
146181c5
...
...
@@ -660,10 +660,6 @@ bool Algorithm::executeInternal() {
if
(
m_alwaysStoreInADS
)
this
->
store
();
// just cache the value internally, it is set at the very end of this
// method
algIsExecuted
=
true
;
// Log that execution has completed.
getLogger
().
debug
(
"Time to validate properties: "
+
...
...
@@ -741,11 +737,9 @@ bool Algorithm::executeInternal() {
// Only gets to here if algorithm ended normally
notificationCenter
().
postNotification
(
new
FinishedNotification
(
this
,
algIsExecuted
));
if
(
algIsExecuted
)
{
setResultState
(
ResultState
::
Success
);
}
return
algIsExecuted
;
new
FinishedNotification
(
this
,
true
));
setResultState
(
ResultState
::
Success
);
return
true
;
}
//---------------------------------------------------------------------------------------------
...
...
Framework/Kernel/inc/MantidKernel/NexusHDF5Descriptor.h
View file @
146181c5
...
...
@@ -12,7 +12,8 @@
#include
<set>
#include
<string>
namespace
Mantid
::
Kernel
{
namespace
Mantid
{
namespace
Kernel
{
class
MANTID_KERNEL_DLL
NexusHDF5Descriptor
{
...
...
@@ -73,4 +74,5 @@ private:
std
::
map
<
std
::
string
,
std
::
set
<
std
::
string
>>
m_allEntries
;
};
}
// namespace Mantid::Kernel
}
// namespace Kernel
}
// namespace Mantid
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment