| 6 | import org.jetbrains.annotations.*; |
| 7 | |
| 8 | @lombok.Data |
| 9 | public class EventFrameSkija implements Event { |
| 10 | @ApiStatus.Internal public final Surface _surface; |
| 11 | |
| 12 | @Override |
| 13 | public String toString() { |
| 14 | return "EventFrameSkija(_surface=" + System.identityHashCode(_surface) + ")"; |
| 15 | } |
| 16 | } |
nothing calls this directly
no outgoing calls
no test coverage detected