This commit is contained in:
RedKale
2016-02-18 16:20:17 +08:00
parent c9463eadac
commit 45903fd40e

View File

@@ -272,7 +272,7 @@ public abstract class ConvertFactory<R extends Reader, W extends Writer> {
Creator result = findCreator(type);
if (result == null) {
result = Creator.create(type);
creators.put(type, result);
if (result != null) creators.put(type, result);
}
return result;
}