File tree Expand file tree Collapse file tree 1 file changed +2
-7
lines changed
src/main/java/org/apache/ibatis/reflection/property Expand file tree Collapse file tree 1 file changed +2
-7
lines changed Original file line number Diff line number Diff line change 1
1
/**
2
- * Copyright 2009-2015 the original author or authors.
2
+ * Copyright 2009-2016 the original author or authors.
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
20
20
/**
21
21
* @author Clinton Begin
22
22
*/
23
- public class PropertyTokenizer implements Iterable < PropertyTokenizer >, Iterator <PropertyTokenizer > {
23
+ public class PropertyTokenizer implements Iterator <PropertyTokenizer > {
24
24
private String name ;
25
25
private String indexedName ;
26
26
private String index ;
@@ -73,9 +73,4 @@ public PropertyTokenizer next() {
73
73
public void remove () {
74
74
throw new UnsupportedOperationException ("Remove is not supported, as it has no meaning in the context of properties." );
75
75
}
76
-
77
- @ Override
78
- public Iterator <PropertyTokenizer > iterator () {
79
- return this ;
80
- }
81
76
}
You can’t perform that action at this time.
0 commit comments