Skip to content

Commit

Permalink
PackageManager: Make all constructor properties public
Browse files Browse the repository at this point in the history
There is no good reason why these should not be public like
"managerName" is, and upcoming changes will require at least
"analysisRoot" to be public.

Signed-off-by: Sebastian Schuberth <[email protected]>
  • Loading branch information
sschuberth committed Jan 8, 2020
1 parent ba5fc9f commit 203208d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions analyzer/src/main/kotlin/PackageManager.kt
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,9 @@ typealias ResolutionResult = MutableMap<File, ProjectAnalyzerResult>
*/
abstract class PackageManager(
val managerName: String,
protected val analysisRoot: File,
protected val analyzerConfig: AnalyzerConfiguration,
protected val repoConfig: RepositoryConfiguration
val analysisRoot: File,
val analyzerConfig: AnalyzerConfiguration,
val repoConfig: RepositoryConfiguration
) {
companion object {
private val LOADER = ServiceLoader.load(PackageManagerFactory::class.java)!!
Expand Down

0 comments on commit 203208d

Please sign in to comment.