JaredDavis22 commented on issue #3176:
URL:
https://github.com/apache/incubator-kie-kogito-runtimes/issues/3176#issuecomment-2769751030
Sorry for the noob question. What process uses readFrom ? The generated code
does not use the reader parameter so I assume this is not used for "production"
usages. What would break if readFrom is just changed to return null?
from
```
public java.util.Map readFrom(ProtoStreamReader reader) throws
IOException {
java.util.Map value = new java.util.Map();
return value;
}
```
to
```
public java.util.Map readFrom(ProtoStreamReader reader) throws
IOException {
return null;
}
```
?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]