in src/main/java/org/apache/tomcat/jakartaee/PassThroughConverter.java [45:52]
public boolean convert(String path, InputStream src, OutputStream dest, EESpecProfile profile) throws IOException {
// This simply copies the source to the destination
Util.copy(src, dest);
if (logger.isLoggable(Level.FINEST)) {
logger.log(Level.FINEST, sm.getString("passThroughConverter.noConversion", path));
}
return false;
}