You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

SpecificService.java 240B

123456789101112
  1. package problem;
  2. public class SpecificService extends GenericService<Specific> {
  3. @Override
  4. protected Specific update(Specific current) {
  5. return null;
  6. }
  7. public static void main(String[] args) {
  8. new SpecificService();
  9. }
  10. }