dvdciri/daggraph

Annotation in provide method

Open

#3 opened on Dec 1, 2017

View on GitHub
 (0 comments) (0 reactions) (0 assignees)JavaScript (1,147 stars) (61 forks)batch import
bughelp wanted

Description

If you have something like this, it doesn't pick up the last two dependency of Picasso.


protected Picasso providePicasso(Context context,
                                     AppAvailableFunctions appAvailableFunctions,
                                     OkHttpClientFactory okHttpClientFactory,
                                     @Named("reduced") List<Interceptor> interceptors,
                                     @Named(PICASSO_CACHE) Cache picassoCache) {

This is what it extract:

{
            "name": "Picasso",
            "dependencies": [
              {
                "name": "Context",
                "dependencies": []
              },
              {
                "name": "AppAvailableFunctions",
                "dependencies": []
              },
              {
                "name": "OkHttpClientFactory",
                "dependencies": []
              },
              {
                "name": "Name",
                "dependencies": []
              },
              {
                "name": "reduce",
                "dependencies": []
              }
            ]
          }

Contributor guide