File pathname=new File(dir.getAbsoluteFile(),prefix + (rotatable ? date : STR0) + suffix); | File pathname=new File(dir.getAbsoluteFile(),prefix + (rotatable.booleanValue() ? date : STR0) + suffix); | rotatable | rotatable.booleanValue() | tomcat | 7ef47cc3cce2645df7a4b49f8b5d8731501afd6a | org.apache.juli.FileHandler | | | | | | Uses | True |
boolean shouldCheckForRedundantSeparator=!rotatable && !prefix.isEmpty() && !suffix.isEmpty(); | boolean shouldCheckForRedundantSeparator=!rotatable.booleanValue() && !prefix.isEmpty() && !suffix.isEmpty(); | rotatable | rotatable.booleanValue() | tomcat | 7ef47cc3cce2645df7a4b49f8b5d8731501afd6a | org.apache.juli.FileHandler | | | | | | Uses | True |
if(rotatable && !date.equals(tsDate)) | if(rotatable.booleanValue() && !date.equals(tsDate)) | rotatable | rotatable.booleanValue() | tomcat | 7ef47cc3cce2645df7a4b49f8b5d8731501afd6a | org.apache.juli.FileHandler | | | | | | Uses | True |