Skip to content

Commit 39b82d5

Browse files
author
Vincent Potucek
committed
run
1 parent 938b97c commit 39b82d5

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

extensions/amazon-lambda-http/runtime/src/main/java/io/quarkus/amazon/lambda/http/LambdaHttpHandler.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ public class LambdaHttpHandler implements RequestHandler<APIGatewayV2HTTPEvent,
5656
// multiple headers
5757
private static final Set<String> COMMA_HEADERS = Set.of("access-control-request-headers");
5858

59+
@Override
5960
public APIGatewayV2HTTPResponse handleRequest(APIGatewayV2HTTPEvent request, Context context) {
6061
InetSocketAddress clientAddress = null;
6162
if (request.getRequestContext() != null && request.getRequestContext().getHttp() != null) {

extensions/amazon-lambda-http/runtime/src/main/java/io/quarkus/amazon/lambda/http/model/MultiValuedTreeMap.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@ public Set<Entry<Key, List<Value>>> entrySet() {
6868
return map.entrySet();
6969
}
7070

71+
@Override
7172
public boolean equals(Object o) {
7273
return map.equals(o);
7374
}
@@ -77,6 +78,7 @@ public List<Value> get(Object key) {
7778
return map.get(key);
7879
}
7980

81+
@Override
8082
public int hashCode() {
8183
return map.hashCode();
8284
}
@@ -179,6 +181,7 @@ public MultiValuedTreeMap<Key, Value> clone() {
179181
return clone;
180182
}
181183

184+
@Override
182185
public String toString() {
183186
StringBuilder result = new StringBuilder();
184187
String delim = ",";

0 commit comments

Comments
 (0)