package java_integration.fixtures;

public class ProtectedStaticMethod {
  protected static String theProtectedMethod() {
    return "42";
  }
}