All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.pitest.highwheel.bytecodeparser.CollapseInnerClassesNameTransformer Maven / Gradle / Ivy

package org.pitest.highwheel.bytecodeparser;

import org.pitest.highwheel.model.ElementName;

public class CollapseInnerClassesNameTransformer implements NameTransformer {

  public ElementName transform(String clazz) {
    if (clazz.contains("$")) {
      return ElementName.fromString(clazz.substring(0, clazz.indexOf('$')));
    }
    return ElementName.fromString(clazz);

  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy