We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 66fb8e8 commit 3899041Copy full SHA for 3899041
src/main/java/org/htmlunit/util/WebResponseWrapper.java
@@ -69,6 +69,15 @@ public InputStream getContentAsStream() throws IOException {
69
return wrappedWebResponse_.getContentAsStream();
70
}
71
72
+ /**
73
+ * {@inheritDoc}
74
+ * The default behavior of this method is to return wasContentCharsetTentative() on the wrapped webResponse object.
75
+ */
76
+ @Override
77
+ public boolean wasContentCharsetTentative() {
78
+ return wrappedWebResponse_.wasContentCharsetTentative();
79
+ }
80
+
81
/**
82
* {@inheritDoc}
83
* The default behavior of this method is to return getContentAsString() on the wrapped webResponse object.
0 commit comments