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.

HypChecksums.java 340B

12345678910111213141516171819
  1. public class HypChecksums {
  2. static class Adler {
  3. long combine(long a, long b, long c, long d) {
  4. return 3;
  5. }
  6. }
  7. public static void main(final String[] pArgs) {
  8. Adler comb = new Adler();
  9. comb.combine(4, 2, 3, 3);
  10. }
  11. }
  12. aspect X {
  13. Object around(): call(* combine(..)) && !within(X) {
  14. return proceed();
  15. }
  16. }