Compare commits

..

6 Commits

Author SHA1 Message Date
wyh 7b63b0ab88 3wyh
1 year ago
pswqm3ot6 bf59cec8b9 pr
1 year ago
pswqm3ot6 25c29a4040 1
1 year ago
tx 038432066e 3tx
1 year ago
pswqm3ot6 cd95f45bb5 accept pr
1 year ago
tx c39b5d3a6c 2
1 year ago

@ -0,0 +1 @@
1

@ -0,0 +1 @@
2

@ -0,0 +1,3 @@
add
add33
2131

@ -9,13 +9,17 @@ import java.security.Principal;
import java.util.*;
public class AbstractHttpServletRequest implements HttpServletRequest {
// This method returns a Part object based on the given string parameter
@Override
public Part getPart(String s) throws IOException, ServletException {
// Return null as there are no parts
return null;
}
// This method returns a collection of Part objects
@Override
public Collection<Part> getParts() throws IOException, ServletException {
// Return an empty list as there are no parts
return List.of();
}

Loading…
Cancel
Save