Skip to content

Commit

Permalink
Fix to account for API change in Azrael
Browse files Browse the repository at this point in the history
  • Loading branch information
sylvainhalle committed Apr 28, 2021
1 parent bbd2426 commit ca54727
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Core/src/ca/uqac/lif/cep/Processor.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
BeepBeep, an event stream processor
Copyright (C) 2008-2018 Sylvain Hallé
Copyright (C) 2008-2021 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 @@ -836,7 +836,7 @@ public final Processor read(ObjectReader<?> reader, Object o) throws ProcessorEx
p.m_outputCount = ((Number) contents.get("output-count")).intValue();
try
{
ObjectReader.setField(p, "m_uniqueId", ((Number) contents.get("id")).intValue());
reader.setField(p, "m_uniqueId", ((Number) contents.get("id")).intValue());
}
catch (ReadException e)
{
Expand Down

0 comments on commit ca54727

Please sign in to comment.