src/main/software/amazon/event/ruler/ByteMachine.java [2052:2067]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        @Override
        public ByteTransition getTransition(byte utf8byte) {
            return null;
        }

        @Override
        public ByteTransition getTransitionForAllBytes() {
            return null;
        }

        @Override
        public Set<ByteTransition> getTransitions() {
            return Collections.emptySet();
        }

        @Override
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/software/amazon/event/ruler/ByteMatch.java [30:45]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    @Override
    public ByteTransition getTransition(byte utf8byte) {
        return null;
    }

    @Override
    public ByteTransition getTransitionForAllBytes() {
        return null;
    }

    @Override
    public Set<ByteTransition> getTransitions() {
        return Collections.emptySet();
    }

    @Override
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



