This is an automated email from the ASF dual-hosted git repository.
markt pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/tomcat.git
The following commit(s) were added to refs/heads/main by this push:
new 29a0ee94dc Removed unnecessary brackets
29a0ee94dc is described below
commit 29a0ee94dc6cc3b07c06070ef991120f90a768dc
Author: greeng00se <[email protected]>
AuthorDate: Tue Sep 5 16:15:04 2023 +0900
Removed unnecessary brackets
---
java/org/apache/coyote/Request.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/java/org/apache/coyote/Request.java
b/java/org/apache/coyote/Request.java
index af87b4dadf..0155a6b575 100644
--- a/java/org/apache/coyote/Request.java
+++ b/java/org/apache/coyote/Request.java
@@ -474,7 +474,7 @@ public final class Request {
public String getContentType() {
contentType();
- if ((contentTypeMB == null) || contentTypeMB.isNull()) {
+ if (contentTypeMB == null || contentTypeMB.isNull()) {
return null;
}
return contentTypeMB.toString();
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]