Skip to content
Snippets Groups Projects
Commit 45b41434 authored by Florian Fittkau's avatar Florian Fittkau
Browse files

default switch case

parent 447397f7
No related branches found
No related tags found
No related merge requests found
......@@ -134,6 +134,8 @@ public abstract class AbstractEventRecord implements ISerializableRecord {
case AfterReceivedRemoteCallRecord.CLAZZ_ID:
return new AfterReceivedRemoteCallRecord(buffer, stringRegistry);
default:
System.out.println("unknown clazz id in createFromBuffer: "
+ clazzId);
return null;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment