We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I’ve just noticed a bug on JCAE, I have no time to make a pull request today, I can do it when I’m back: In class DoubleArrayTimestampHandler:
@Override public <E> void setValue(Channel channel, E value) throws CAException { channel.put(((DoubleTimestamp) value).getValue()); } @Override public <E> void setValue(Channel channel, E value, PutListener listener) throws CAException { channel.put(((DoubleTimestamp) value).getValue(), listener); }
Should be
@Override public <E> void setValue(Channel channel, E value) throws CAException { channel.put(((DoubleArrayTimestamp) value).getValue()); } @Override public <E> void setValue(Channel channel, E value, PutListener listener) throws CAException { channel.put(((DoubleArrayTimestamp) value).getValue(), listener); }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I’ve just noticed a bug on JCAE, I have no time to make a pull request today, I can do it when I’m back:
In class DoubleArrayTimestampHandler:
Should be
The text was updated successfully, but these errors were encountered: