azure-toolkit-libs/azure-toolkit-appservice-lib/src/main/java/com/microsoft/azure/toolkit/lib/appservice/function/impl/DefaultFunctionProject.java [96:103]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    private static Set<Method> findFunctions(final List<URL> urls) {
        return new Reflections(
            new ConfigurationBuilder()
                .addUrls(urls)
                .setScanners(Scanners.MethodsAnnotated)
                .addClassLoaders(getClassLoader(urls)))
            .getMethodsAnnotatedWith(FunctionName.class);
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



azure-toolkit-libs/azure-toolkit-appservice-lib/src/main/java/com/microsoft/azure/toolkit/lib/legacy/function/handlers/AnnotationHandlerImpl.java [47:54]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public Set<Method> findFunctions(final List<URL> urls) {
        return new Reflections(
            new ConfigurationBuilder()
                .addUrls(urls)
                .setScanners(Scanners.MethodsAnnotated)
                .addClassLoaders(getClassLoader(urls)))
            .getMethodsAnnotatedWith(FunctionName.class);
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



