Skip to content
Snippets Groups Projects
Commit 61bc2692 authored by William Schultz's avatar William Schultz Committed by Markus Alexander Kuppe
Browse files

Fix compile failures

parent 706aa767
No related branches found
No related tags found
No related merge requests found
...@@ -25,6 +25,7 @@ ...@@ -25,6 +25,7 @@
******************************************************************************/ ******************************************************************************/
package tlc2.tool.liveness; package tlc2.tool.liveness;
import tlc2.tool.Action;
import tlc2.tool.TLCState; import tlc2.tool.TLCState;
import tlc2.util.BitVector; import tlc2.util.BitVector;
...@@ -96,6 +97,13 @@ public class NoopLivenessStateWriter implements ILivenessStateWriter { ...@@ -96,6 +97,13 @@ public class NoopLivenessStateWriter implements ILivenessStateWriter {
// noop // noop
} }
/* (non-Javadoc)
* @see tlc2.util.IStateWriter#writeState(tlc2.tool.TLCState, tlc2.tool.TLCState, boolean, tlc2.tool.Action)
*/
public void writeState(TLCState state, TLCState successor, boolean successorStateIsNew, Action action) {
// noop
}
/* (non-Javadoc) /* (non-Javadoc)
* @see tlc2.util.IStateWriter#getDumpFileName() * @see tlc2.util.IStateWriter#getDumpFileName()
*/ */
......
...@@ -25,6 +25,7 @@ ...@@ -25,6 +25,7 @@
******************************************************************************/ ******************************************************************************/
package tlc2.util; package tlc2.util;
import tlc2.tool.Action;
import tlc2.tool.TLCState; import tlc2.tool.TLCState;
public final class NoopStateWriter implements IStateWriter { public final class NoopStateWriter implements IStateWriter {
...@@ -72,6 +73,13 @@ public final class NoopStateWriter implements IStateWriter { ...@@ -72,6 +73,13 @@ public final class NoopStateWriter implements IStateWriter {
// noop // noop
} }
/* (non-Javadoc)
* @see tlc2.util.IStateWriter#writeState(tlc2.tool.TLCState, tlc2.tool.TLCState, boolean, tlc2.tool.Action)
*/
public void writeState(TLCState state, TLCState successor, boolean successorStateIsNew, Action action) {
// noop
}
/* (non-Javadoc) /* (non-Javadoc)
* @see tlc2.util.IStateWriter#isNoop() * @see tlc2.util.IStateWriter#isNoop()
*/ */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment