codice:
public class Ibatis {
private static final SqlMapClient sqlMap;
static {
try {
String resource = "ibatis-config.xml";
Reader reader = Resources.getResourceAsReader (resource);
sqlMap = SqlMapClientBuilder.buildSqlMapClient(reader);
} catch (Exception e) {

e.printStackTrace();
throw new RuntimeException ();
}
}
public static getInstance () {
return sqlMap;
}
}
manca il tipo di ritorno. a me da errore, è giusto così o manca?