blob: b7cd0889ef2a192b20336b6f2dcdb47a4724f52e [file] [log] [blame]
// SKIP_IN_RUNTIME_TEST
package test;
/**
* @deprecated
*/
public class JavaDocDeprecated {
/**
* @deprecated
*/
public String getFoo(String text) {
return text;
}
}