File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/main/java/org/jsoup/safety Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -137,7 +137,7 @@ private CleaningVisitor(Element root, Element destination) {
137
137
this .destination = destination ;
138
138
}
139
139
140
- public void head (Node source , int depth ) {
140
+ @ Override public void head (Node source , int depth ) {
141
141
if (source instanceof Element ) {
142
142
Element sourceEl = (Element ) source ;
143
143
@@ -164,7 +164,7 @@ public void head(Node source, int depth) {
164
164
}
165
165
}
166
166
167
- public void tail (Node source , int depth ) {
167
+ @ Override public void tail (Node source , int depth ) {
168
168
if (source instanceof Element && safelist .isSafeTag (source .normalName ())) {
169
169
destination = destination .parent (); // would have descended, so pop destination stack
170
170
}
You can’t perform that action at this time.
0 commit comments