This commit is contained in:
wentch
2015-12-24 10:46:24 +08:00
parent aca66df386
commit 83053b2939

View File

@@ -28,9 +28,9 @@ import org.objectweb.asm.Type;
* }
*
* private static Creator createCreator() {
* return new Creator() {
* return new Creator<Record>() {
* @Override
* public Object create(Object... params) {
* public Record create(Object... params) {
* return new Record((Integer) params[0], (String) params[1]);
* }
* };