(String name)
| 2 | |
| 3 | public interface FourByteTag { |
| 4 | static int fromString(String name) { |
| 5 | assert name.length() == 4 : "Name must be exactly 4 symbols, got: '" + name + "'"; |
| 6 | return (name.charAt(0) & 0xFF) << 24 |
| 7 | | (name.charAt(1) & 0xFF) << 16 |
no outgoing calls
no test coverage detected