Код:
Код: Выделить всё
public class SoapService extends Object {
/** Creates new SoapService */
public SoapService() {
}
/** This is the SOAP exposes method
*/
public String sayGreeting(String name)
{
return "Hello "+name;
}
}
Имеет ли этот синтаксис какую-либо цель или он «просто глуп»?
Подробнее здесь: https://stackoverflow.com/questions/227 ... -redundant