public void patch()

in tomee-patch-core/src/main/java/org/apache/tomee/patch/core/Transformation.java [554:558]


        public void patch(final Clazz clazz, final List<Clazz> potentialPatches) {
            potentialPatches.stream()
                    .filter(potentialPatch -> potentialPatch.getName().startsWith(clazz.getPrefix()))
                    .forEach(patches::add);
        }