File tree Expand file tree Collapse file tree 1 file changed +1
-1
lines changed
src/main/java/org/jd/core/v1/service/layouter Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ public void process(Message message) throws Exception {
3838 boolean showBridgeAndSynthetic = message .getHeader ("showBridgeAndSynthetic" , Boolean .FALSE );
3939 Map <String , Object > configuration = message .getHeader ("configuration" );
4040 Object realignLineNumbersConfiguration = (configuration == null ) ? "false" : configuration .get ("realignLineNumbers" );
41- boolean realignLineNumbers = (realignLineNumbersConfiguration == null ) ? false : ! "false " .equals (realignLineNumbersConfiguration .toString ());
41+ boolean realignLineNumbers = (realignLineNumbersConfiguration == null ) ? false : "true " .equals (realignLineNumbersConfiguration .toString ());
4242
4343 List <Fragment > fragments = message .getBody ();
4444
You can’t perform that action at this time.
0 commit comments