===========================================================
                                      .___ __  __   
          _________________  __ __  __| _/|__|/  |_ 
         / ___\_` __ \__  \ |  |  \/ __ | | \\_  __\
        / /_/  >  | \// __ \|  |  / /_/ | |  ||  |  
        \___  /|__|  (____  /____/\____ | |__||__|  
       /_____/            \/           \/           
              grep rough audit - static analysis tool
                  v2.8 written by @Wireghoul
=================================[justanotherhacker.com]===
r-cran-solrium-1.1.4+dfsg/README.md-42-
r-cran-solrium-1.1.4+dfsg/README.md:43:For example, if we instantiate a client like `conn <- SolrClient$new()`, then
r-cran-solrium-1.1.4+dfsg/README.md:44:to use the first way we can do `conn$search(...)`, and the second way by doing
r-cran-solrium-1.1.4+dfsg/README.md-45-`solr_search(conn, ...)`. These two ways of using the package hopefully
##############################################
r-cran-solrium-1.1.4+dfsg/README.md-114-
r-cran-solrium-1.1.4+dfsg/README.md:115:Use `SolrClient$new()` to initialize your connection. These examples use a remote Solr server, but work on any local Solr server.
r-cran-solrium-1.1.4+dfsg/README.md-116-
##############################################
r-cran-solrium-1.1.4+dfsg/R/SolrClient.R-29-#' function that you can use by passing in the connection object made
r-cran-solrium-1.1.4+dfsg/R/SolrClient.R:30:#' by calling `SolrClient$new()`. Also, see the docs for each method for
r-cran-solrium-1.1.4+dfsg/R/SolrClient.R-31-#' parameter definitions and their default values.
##############################################
r-cran-solrium-1.1.4+dfsg/NEWS.md-5-
r-cran-solrium-1.1.4+dfsg/NEWS.md:6:* fixed typo in code that made the `delete_by_query()`/`$delete_by_query()` method not work correctly (#121) thanks @abhik1368 for the report
r-cran-solrium-1.1.4+dfsg/NEWS.md-7-
##############################################
r-cran-solrium-1.1.4+dfsg/NEWS.md-28-* the major search methods on `SolrClient` and their function equivalents gain parameter `progress` that supports for now only `httr::progress()` (#115)
r-cran-solrium-1.1.4+dfsg/NEWS.md:29:* gains new method `$json_request()` on `SolrClient` and new function `solr_json_request()` for working with the JSON request API (#117)
r-cran-solrium-1.1.4+dfsg/NEWS.md-30-
##############################################
r-cran-solrium-1.1.4+dfsg/debian/tests/run-unit-test-6-if [ "$AUTOPKGTEST_TMP" = "" ] ; then
r-cran-solrium-1.1.4+dfsg/debian/tests/run-unit-test:7:    AUTOPKGTEST_TMP=`mktemp -d /tmp/${debname}-test.XXXXXX`
r-cran-solrium-1.1.4+dfsg/debian/tests/run-unit-test-8-    trap "rm -rf $AUTOPKGTEST_TMP" 0 INT QUIT ABRT PIPE TERM