-
Notifications
You must be signed in to change notification settings - Fork 2.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added Checkstyle integration to Maven. #2428
Conversation
@@ -22,7 +22,7 @@ import tl = require('vsts-task-lib/task'); | |||
*/ | |||
export abstract class BaseTool implements IAnalysisTool { | |||
|
|||
constructor(private toolName: string, protected buildOutput: BuildOutput, private uiInputName: string) { | |||
constructor(protected toolName: string, protected buildOutput: BuildOutput, private uiInputName: string) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Changed to allow subclasses to access this field.
15ac4ba
to
a90a205
Compare
@@ -8,9 +8,7 @@ import util = require('util'); | |||
import {ToolRunner} from 'vsts-task-lib/toolrunner'; | |||
import tl = require('vsts-task-lib/task'); | |||
|
|||
import {ModuleAnalysis} from './moduleanalysis'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Removing unused imports.
return toolRunner; | ||
} | ||
|
||
/** |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I believe you haven't bumped the gradle task version.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
While there is no real cost to doing so, there is also no functional change to the Gradle task in this PR.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Accepted - there may be new bugs that come up with this version.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Resolved, done.
LGTM |
a9380c0
to
9a3df29
Compare
No description provided.