Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

Deprecation.java 156B

12345678
  1. // bug 54098
  2. public class Deprecation {
  3. public static void main(String[] args) {
  4. Deprecated dep = new Deprecated();
  5. dep.bar();
  6. }
  7. }