Fixed 'unchecked conversion' warnings
This commit is contained in:
parent
3f49bd0203
commit
667e0ee1eb
1 changed files with 3 additions and 3 deletions
|
@ -536,13 +536,13 @@ public class XMLPatcher {
|
||||||
*/
|
*/
|
||||||
protected static class WithChildFilter extends AbstractFilter<Element> {
|
protected static class WithChildFilter extends AbstractFilter<Element> {
|
||||||
private String type;
|
private String type;
|
||||||
private Filter childFilter;
|
private Filter<Element> childFilter;
|
||||||
|
|
||||||
public WithChildFilter( Filter childFilter ) {
|
public WithChildFilter( Filter<Element> childFilter ) {
|
||||||
this( null, childFilter );
|
this( null, childFilter );
|
||||||
}
|
}
|
||||||
|
|
||||||
public WithChildFilter( String type, Filter childFilter ) {
|
public WithChildFilter( String type, Filter<Element> childFilter ) {
|
||||||
this.type = type;
|
this.type = type;
|
||||||
this.childFilter = childFilter;
|
this.childFilter = childFilter;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue