KxxxxxX opened a new issue, #1845: URL: https://github.com/apache/incubator-eventmesh/issues/1845
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/eventmesh/issues?q=is%3Aissue) and found no similar issues. ### Enhancement Request ```java @Override protected boolean isContentTypeHeader(String key) { return key.equals(KnativeHeaders.CONTENT_TYPE); } ``` located at: org/apache/eventmesh/connector/knative/cloudevent/impl/KnativeBinaryMessageReader.java line 34 explanation: This line has the form `String str = str.equals("someOtherString")` If the string variable str is null, a NullPointerException may occur. if the code is adapted to `String str = "someOtherString".equals(str)` That is, if you call equals() on a string literal, passing the variable as an argument, then this exception will not occur because equals() will check for null. ### Describe the solution you'd like ```java @Override protected boolean isContentTypeHeader(String key) { return KnativeHeaders.CONTENT_TYPE.equals(key); } ``` ### Are you willing to submit PR? - [X] Yes I am willing to submit a PR! -- 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]
