Decencies

Results 10 comments of Decencies

> I had a look and there's a format difference for sure. It's like the LZMA header is omitted. Unfortunately I won't have time to reverse it in the near...

Code formatting doesn't do it justice, here's a picture with an I-beam indicating the exact place: ![image](https://github.com/javaparser/javaparser/assets/66835910/864d2ac2-3c3f-45b3-bbb8-b1720a46cc59)

> Can you provide us with a unit test? Would the code being parsed suffice? I don't really know how to setup a unit test for this

> > Can you provide us with a unit test? > > Would the code being parsed suffice? I don't really know how to setup a unit test for this...

The program is using the latest version of JavaParser available on maven-central (3.25.10)

> Thank you. Can you show us how you configure the parser. https://github.com/sfPlayer1/Matcher/blob/2cb3bbd8a4652c33ce907c1bb1d5356835ec11d5/src/main/java/matcher/srcprocess/SrcDecorator.java#L72

Very weird, it seems to work standalone for me too....

> Very weird, it seems to work standalone for me too.... nevermind, result.isSuccessful() is not true

> > Very weird, it seems to work standalone for me too.... > > nevermind, result.isSuccessful() is not true ```java JavaParser javaParser = new JavaParser(); javaParser.getParserConfiguration().setLanguageLevel(ParserConfiguration.LanguageLevel.RAW); ParseResult result = javaParser.parse(code);...