package java_integration.fixtures;

public class PrivateStaticMethod {
  public static String thePrivateMethod() {
    return "42";
  }
}