Skip to content

Commit 0b36d3e

Browse files
authored
Merge pull request #1006 from hazendaz/master
[ci] Replace TODO Auto generated comments with Not Implemented
2 parents 9f3122a + 2fab9c2 commit 0b36d3e

File tree

2 files changed

+16
-18
lines changed

2 files changed

+16
-18
lines changed

src/test/java/org/apache/ibatis/submitted/custom_collection_handling/CustomObjectWrapper.java

Lines changed: 11 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright 2009-2015 the original author or authors.
2+
* Copyright 2009-2017 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -31,61 +31,60 @@ public CustomObjectWrapper(CustomCollection collection){
3131

3232
@Override
3333
public Object get(PropertyTokenizer prop) {
34-
// TODO Auto-generated method stub
34+
// Not Implemented
3535
return null;
3636
}
3737

3838
@Override
3939
public void set(PropertyTokenizer prop, Object value) {
40-
// TODO Auto-generated method stub
41-
40+
// Not Implemented
4241
}
4342

4443
@Override
4544
public String findProperty(String name, boolean useCamelCaseMapping) {
46-
// TODO Auto-generated method stub
45+
// Not Implemented
4746
return null;
4847
}
4948

5049
@Override
5150
public String[] getGetterNames() {
52-
// TODO Auto-generated method stub
51+
// Not Implemented
5352
return null;
5453
}
5554

5655
@Override
5756
public String[] getSetterNames() {
58-
// TODO Auto-generated method stub
57+
// Not Implemented
5958
return null;
6059
}
6160

6261
@Override
6362
public Class<?> getSetterType(String name) {
64-
// TODO Auto-generated method stub
63+
// Not Implemented
6564
return null;
6665
}
6766

6867
@Override
6968
public Class<?> getGetterType(String name) {
70-
// TODO Auto-generated method stub
69+
// Not Implemented
7170
return null;
7271
}
7372

7473
@Override
7574
public boolean hasSetter(String name) {
76-
// TODO Auto-generated method stub
75+
// Not Implemented
7776
return false;
7877
}
7978

8079
@Override
8180
public boolean hasGetter(String name) {
82-
// TODO Auto-generated method stub
81+
// Not Implemented
8382
return false;
8483
}
8584

8685
@Override
8786
public MetaObject instantiatePropertyValue(String name, PropertyTokenizer prop, ObjectFactory objectFactory) {
88-
// TODO Auto-generated method stub
87+
// Not Implemented
8988
return null;
9089
}
9190

src/test/java/org/apache/ibatis/submitted/maptypehandler/LabelsTypeHandler.java

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright 2009-2015 the original author or authors.
2+
* Copyright 2009-2017 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -30,25 +30,24 @@ public class LabelsTypeHandler implements TypeHandler<Map<String, Object>> {
3030

3131
@Override
3232
public void setParameter(PreparedStatement ps, int i, Map<String, Object> parameter, JdbcType jdbcType) throws SQLException {
33-
// TODO Auto-generated method stub
34-
33+
// Not Implemented
3534
}
3635

3736
@Override
3837
public Map<String, Object> getResult(ResultSet rs, String columnName) throws SQLException {
39-
// TODO Auto-generated method stub
38+
// Not Implemented
4039
return null;
4140
}
4241

4342
@Override
4443
public Map<String, Object> getResult(ResultSet rs, int columnIndex) throws SQLException {
45-
// TODO Auto-generated method stub
44+
// Not Implemented
4645
return null;
4746
}
4847

4948
@Override
5049
public Map<String, Object> getResult(CallableStatement cs, int columnIndex) throws SQLException {
51-
// TODO Auto-generated method stub
50+
// Not Implemented
5251
return null;
5352
}
5453

0 commit comments

Comments
 (0)