Skip to content

Commit

Permalink
Modification to Slice
Browse files Browse the repository at this point in the history
Its output map is re-initialized instead of being cleared upon a call to reset --for the same reason as the previous commit.
  • Loading branch information
sylvainhalle committed Nov 9, 2023
1 parent b5dd56f commit 7eedba4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Core/src/ca/uqac/lif/cep/tmf/Slice.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
BeepBeep, an event stream processor
Copyright (C) 2008-2022 Sylvain Hallé
Copyright (C) 2008-2023 Sylvain Hallé
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published
Expand Down Expand Up @@ -146,7 +146,7 @@ public Slice duplicate(boolean with_state)
public void reset()
{
super.reset();
m_lastValues.clear();
m_lastValues = new HashMap<Object,Object>();
}

@Override
Expand Down

0 comments on commit 7eedba4

Please sign in to comment.