Remove trailing whitespace in source files
find . -type f -name "*.java" -or -name "*.aj" | \ xargs perl -p -i -e "s/[ \t]*$//g" {} \; Issue: SPR-10127
This commit is contained in:
parent
44a474a014
commit
1762157ad1
|
@ -35,4 +35,3 @@ public interface BeanResolver {
|
||||||
Object resolve(EvaluationContext context, String beanName) throws AccessException;
|
Object resolve(EvaluationContext context, String beanName) throws AccessException;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -60,4 +60,3 @@ public interface RowMapper<T> {
|
||||||
T mapRow(ResultSet rs, int rowNum) throws SQLException;
|
T mapRow(ResultSet rs, int rowNum) throws SQLException;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -35,4 +35,3 @@ public class ConfigurableJasperReportsViewWithStreamTests extends AbstractConfig
|
||||||
return "application/pdf";
|
return "application/pdf";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue