01: package org.drools.util.asm; 02: 03: public class MethodCompareB { 04: 05: public boolean evaluate(final String foox) { 06: if (foox == null || foox.startsWith("42")) { 07: 08: return true; 09: } else { 10: return false; 11: } 12: } 13: 14: }