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.
2 parents f136651 + 3e85e9f commit ca1c463Copy full SHA for ca1c463
javascript/extractor/src/com/semmle/js/extractor/HTMLExtractor.java
@@ -13,7 +13,6 @@
13
import com.semmle.js.extractor.ExtractorConfig.Platform;
14
import com.semmle.js.extractor.ExtractorConfig.SourceType;
15
import com.semmle.js.parser.ParseError;
16
-import com.semmle.util.data.Option;
17
import com.semmle.util.data.Pair;
18
import com.semmle.util.data.StringUtil;
19
import com.semmle.util.io.WholeIO;
@@ -239,7 +238,7 @@ public Pair<List<Label>, LoCInfo> extractEx(TextualExtractor textualExtractor) {
239
238
extractor.setSourceMap(textualExtractor.getSourceMap());
240
}
241
242
- List<Label> rootNodes = extractor.doit(Option.some(eltHandler));
+ List<Label> rootNodes = extractor.doit(eltHandler);
243
244
return Pair.make(rootNodes, locInfo);
245
0 commit comments