Merge branch 'refs/heads/dev' into feature/tx

# Conflicts:
#	src/main/java/com.xiaoyi/AbstractHttpServletRequest.java
feature/tx
tx 9 months ago
commit f9315a59ad

@ -9,15 +9,14 @@ import java.security.Principal;
import java.util.*; import java.util.*;
public class AbstractHttpServletRequest implements HttpServletRequest { public class AbstractHttpServletRequest implements HttpServletRequest {
// This method is overridden from the Part interface and is used to get a Part object from the request
@Override @Override
public Part getPart(String s) throws IOException, ServletException { public Part getPart(String s) throws IOException, ServletException {
// This method returns null as there is no implementation for it
return null; return null;
} }
// This method returns a collection of Part objects
@Override @Override
public Collection<Part> getParts() throws IOException, ServletException { public Collection<Part> getParts() throws IOException, ServletException {
// Return an empty list as there are no parts
return List.of(); return List.of();
} }
//hello //hello

Loading…
Cancel
Save