src/main/java/com/microsoft/azure/functions/worker/reflect/DefaultClassLoaderProvider.java [34:40]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  @Override
  public void addCustomerUrl(URL url) throws IOException {
    if (customerUrls.contains(url)) {
      return;
    }
    WorkerLogManager.getSystemLogger().info("Loading customer file URL: " + url);
    customerUrls.add(url);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/com/microsoft/azure/functions/worker/reflect/EnhancedClassLoaderProvider.java [38:44]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    @Override
    public void addCustomerUrl(URL url) throws IOException {
        if (customerUrls.contains(url)) {
            return;
        }
        WorkerLogManager.getSystemLogger().info("Loading customer file URL: " + url);
        customerUrls.add(url);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



