Skip to content

Commit 7851c5a

Browse files
rahul-kamatcopybara-github
authored andcommitted
Remove unnecessary boolean variable declaration
PiperOrigin-RevId: 512179235
1 parent 4edba9b commit 7851c5a

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/com/google/javascript/jscomp/serialization/TypedAstDeserializer.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -352,9 +352,8 @@ private static void addInputSourceMap(
352352
String sourceMappingURL = deserializer.getSourceMappingURL();
353353

354354
if (sourceMappingURL != null && sourceMappingURL.length() > 0 && resolveSourceMapAnnotations) {
355-
boolean parseInline = parseInlineSourceMaps;
356355
SourceFile sourceMapSourceFile =
357-
SourceMapResolver.extractSourceMap(sourceFile, sourceMappingURL, parseInline);
356+
SourceMapResolver.extractSourceMap(sourceFile, sourceMappingURL, parseInlineSourceMaps);
358357
if (sourceMapSourceFile != null) {
359358
compiler.addInputSourceMap(sourceFile.getName(), new SourceMapInput(sourceMapSourceFile));
360359
}

0 commit comments

Comments
 (0)