Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for ForwardsToTheWrongMethod (0.12 seconds)

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

        }
      }
    
      private interface Arithmetic extends Adder {
        int minus(int a, int b);
      }
    
      private static final class ForwardsToTheWrongMethod implements Arithmetic {
        private final Arithmetic arithmetic;
    
        ForwardsToTheWrongMethod(Arithmetic arithmetic) {
          this.arithmetic = arithmetic;
        }
    
        @Override
        public int minus(int a, int b) { // bad!
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Apr 01 17:27:13 GMT 2026
    - 12.9K bytes
    - Click Count (0)
  2. guava-testlib/test/com/google/common/testing/anotherpackage/ForwardingWrapperTesterTest.java

        }
      }
    
      private interface Arithmetic extends Adder {
        int minus(int a, int b);
      }
    
      private static final class ForwardsToTheWrongMethod implements Arithmetic {
        private final Arithmetic arithmetic;
    
        ForwardsToTheWrongMethod(Arithmetic arithmetic) {
          this.arithmetic = arithmetic;
        }
    
        @Override
        public int minus(int a, int b) { // bad!
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Apr 01 17:27:13 GMT 2026
    - 12.9K bytes
    - Click Count (0)
Back to Top