Skip to content

Commit

Permalink
keep attribute and tag name capitalization
Browse files Browse the repository at this point in the history
  • Loading branch information
jurgenvinju committed Nov 28, 2023
1 parent 9316459 commit adf9878
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -405,7 +405,7 @@
<dependency>
<groupId>org.jsoup</groupId>
<artifactId>jsoup</artifactId>
<version>1.17.2-SNAPSHOT</version>
<version>1.17.1</version>
</dependency>
<dependency>
<groupId>org.jdom</groupId>
Expand Down
2 changes: 1 addition & 1 deletion src/org/rascalmpl/library/lang/xml/IO.java
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ public IValue readXML(ISourceLocation loc, IBool fullyQualify, IBool trackOrigin

try (InputStream reader = URIResolverRegistry.getInstance().getInputStream(loc)) {
Parser xmlParser = Parser.xmlParser()
.settings(new ParseSettings(false, false))
.settings(new ParseSettings(true, true))
.setTrackPosition(trackOrigins.getValue())
;

Expand Down

0 comments on commit adf9878

Please sign in to comment.