package java_integration.fixtures;

public class PrivateInstanceMethod {
  private String thePrivateMethod() {
    return "42";
  }
}