summaryrefslogtreecommitdiffstats
path: root/src/uscxml/debug/Breakpoint.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/uscxml/debug/Breakpoint.cpp')
-rw-r--r--src/uscxml/debug/Breakpoint.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/uscxml/debug/Breakpoint.cpp b/src/uscxml/debug/Breakpoint.cpp
index 3287075..7b9d5c9 100644
--- a/src/uscxml/debug/Breakpoint.cpp
+++ b/src/uscxml/debug/Breakpoint.cpp
@@ -244,7 +244,7 @@ bool Breakpoint::matches(Interpreter interpreter, const Breakpoint& other) const
return InterpreterImpl::isMember(other.element, nodes);
}
#endif
-
+
if(transSourceId.length() > 0 && transSourceId != other.transSourceId) {
return false;
}
@@ -255,7 +255,7 @@ bool Breakpoint::matches(Interpreter interpreter, const Breakpoint& other) const
if (condition.length() > 0) {
try {
- interpreter.getImpl()->isTrue(condition);
+ interpreter.getImpl()->isTrue(condition);
} catch (...) {
return false;
}