(String typeName, String details, long id)
| 65 | private final long id; |
| 66 | |
| 67 | InternalLogId(String typeName, String details, long id) { |
| 68 | checkNotNull(typeName, "typeName"); |
| 69 | checkArgument(!typeName.isEmpty(), "empty type"); |
| 70 | this.typeName = typeName; |
| 71 | this.details = details; |
| 72 | this.id = id; |
| 73 | } |
| 74 | |
| 75 | public String getTypeName() { |
| 76 | return typeName; |
nothing calls this directly
no test coverage detected