java: fix a bug within a code of DynamicCodeGenBase.java

This commit is contained in:
Muga Nishizawa 2010-10-24 00:40:58 +09:00
parent 645d296841
commit 945d279f28

View File

@ -186,11 +186,11 @@ public class DynamicCodeGenBase implements Constants {
}
}
static interface MessagePackerAccessor {
public static interface MessagePackerAccessor {
void setMessagePackers(MessagePacker[] packers);
}
static class MessagePackerAccessorImpl implements MessagePackerAccessor {
protected static class MessagePackerAccessorImpl implements MessagePackerAccessor {
public Class<?> type;
public MessagePacker[] _$$_packers;