Skip to content

Commit 271cc6b

Browse files
committed
remove lefterover debug comment
1 parent 25a8469 commit 271cc6b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

javascript/extractor/src/com/semmle/js/extractor/FileExtractor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -356,7 +356,7 @@ public static FileType forFile(File f, ExtractorConfig config) {
356356

357357
/** Determine the {@link FileType} for a given file based on its extension only. */
358358
public static FileType forFileExtension(File f) {
359-
String lcExt = StringUtil.lc(FileUtil.extension(f)); // TODO: Here, it doesn't recognize .html.erb files
359+
String lcExt = StringUtil.lc(FileUtil.extension(f));
360360
for (FileType tp : values())
361361
if (tp.getExtensions().contains(lcExt)) {
362362
return tp;

0 commit comments

Comments
 (0)