Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ForwardsToTheWrongMethod (0.1 sec)

  1. android/guava-testlib/test/com/google/common/testing/anotherpackage/ForwardingWrapperTesterTest.java

        }
      }
    
      public interface Arithmetic extends Adder {
        int minus(int a, int b);
      }
    
      private static class ForwardsToTheWrongMethod implements Arithmetic {
        private final Arithmetic arithmetic;
    
        ForwardsToTheWrongMethod(Arithmetic arithmetic) {
          this.arithmetic = arithmetic;
        }
    
        @Override
        public int minus(int a, int b) { // bad!
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Jul 14 14:44:08 UTC 2025
    - 15.7K bytes
    - Viewed (0)
  2. guava-testlib/test/com/google/common/testing/anotherpackage/ForwardingWrapperTesterTest.java

        }
      }
    
      public interface Arithmetic extends Adder {
        int minus(int a, int b);
      }
    
      private static class ForwardsToTheWrongMethod implements Arithmetic {
        private final Arithmetic arithmetic;
    
        ForwardsToTheWrongMethod(Arithmetic arithmetic) {
          this.arithmetic = arithmetic;
        }
    
        @Override
        public int minus(int a, int b) { // bad!
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Jul 14 14:44:08 UTC 2025
    - 15.7K bytes
    - Viewed (0)
Back to top