Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for removeMethod (0.15 sec)

  1. platforms/core-configuration/base-services-groovy/src/main/java/org/gradle/groovy/scripts/internal/AstUtils.java

                // There is no script class when there are no statements or methods declared in the script
                return null;
            }
            return source.getAST().getClasses().get(0);
        }
    
        public static void removeMethod(ClassNode declaringClass, MethodNode methodNode) {
            declaringClass.getMethods().remove(methodNode);
            declaringClass.getDeclaredMethods(methodNode.getName()).clear();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 10:00:26 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  2. guava-testlib/src/com/google/common/collect/testing/AbstractIteratorTester.java

         * exception from the target.
         */
        referenceException.assertPermitted(targetException);
      }
    
      private static final IteratorOperation REMOVE_METHOD =
          new IteratorOperation() {
            @Override
            public @Nullable Object execute(Iterator<?> iterator) {
              iterator.remove();
              return null;
            }
          };
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  3. android/guava-testlib/src/com/google/common/collect/testing/AbstractIteratorTester.java

         * exception from the target.
         */
        referenceException.assertPermitted(targetException);
      }
    
      private static final IteratorOperation REMOVE_METHOD =
          new IteratorOperation() {
            @Override
            public @Nullable Object execute(Iterator<?> iterator) {
              iterator.remove();
              return null;
            }
          };
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 20.7K bytes
    - Viewed (0)
Back to top