(int moduleId, int protocolId)
| 135 | } |
| 136 | |
| 137 | public static long makeTypeId(int moduleId, int protocolId) { |
| 138 | return (long)moduleId << 32 | (protocolId & 0xffff_ffffL); |
| 139 | } |
| 140 | |
| 141 | public static int getModuleId(long typeId) { |
| 142 | return (int)(typeId >> 32); |
no outgoing calls
no test coverage detected