(String type)
| 30 | } |
| 31 | |
| 32 | @Override |
| 33 | public String mapType(String type) { |
| 34 | // Do not map null types |
| 35 | if (type == null) { |
| 36 | return null; |
| 37 | } |
| 38 | return super.mapType(StringUtils.fixDesc(type, mappings)); |
| 39 | } |
| 40 | |
| 41 | @Override |
| 42 | public String[] mapTypes(String[] types) { |