-
Notifications
You must be signed in to change notification settings - Fork 53
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
[MCLEAN-126] Replaced old File API with new Path equivalent where possible #62
[MCLEAN-126] Replaced old File API with new Path equivalent where possible #62
Conversation
632366f
to
7754dd7
Compare
7754dd7
to
99b4b8d
Compare
@@ -197,7 +199,7 @@ public class CleanMojo extends AbstractMojo { | |||
* waiting for all files to be deleted when the session ends, <code>at-end</code> to indicate that the actual | |||
* deletion should be performed synchronously when the session ends, or <code>defer</code> to specify that | |||
* the actual file deletion should be started in the background when the session ends (this should only be used |
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.
session ends. (This should only be used
@@ -197,7 +199,7 @@ public class CleanMojo extends AbstractMojo { | |||
* waiting for all files to be deleted when the session ends, <code>at-end</code> to indicate that the actual | |||
* deletion should be performed synchronously when the session ends, or <code>defer</code> to specify that | |||
* the actual file deletion should be started in the background when the session ends (this should only be used | |||
* when maven is embedded in a long running process). | |||
* when maven is embedded in a long-running process). |
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.
period inside parentheses
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 see your point. Maybe even drop the parentheses altogether?
Resolve #168 |
Replaced usage of old
File
API with newPath
API where possible.