Skip to content

Commit

Permalink
Removed unnecessary brackets
Browse files Browse the repository at this point in the history
  • Loading branch information
greeng00se authored and markt-asf committed Sep 5, 2023
1 parent d0b655d commit 29a0ee9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion java/org/apache/coyote/Request.java
Original file line number Diff line number Diff line change
Expand Up @@ -474,7 +474,7 @@ public long getContentLengthLong() {

public String getContentType() {
contentType();
if ((contentTypeMB == null) || contentTypeMB.isNull()) {
if (contentTypeMB == null || contentTypeMB.isNull()) {
return null;
}
return contentTypeMB.toString();
Expand Down

0 comments on commit 29a0ee9

Please sign in to comment.