-
Notifications
You must be signed in to change notification settings - Fork 23
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
[MSHARED-860] deprecated Windows 9X CommandShell #20
Conversation
@@ -29,12 +29,11 @@ | |||
/** | |||
* <p> | |||
* Class that abstracts the Shell functionality, | |||
* with subclases for shells that behave particularly, like | |||
* with subclasses for shells that behave particularly, like</p> |
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.
Javadoc 8 will probably bug you for this. They expect <p>
only.
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.
fixed
@@ -24,7 +24,7 @@ | |||
|
|||
/** | |||
* <p> | |||
* Implementation to call the CMD Shell present on Windows NT, 2000 and XP | |||
* Implementation to call the CMD Shell present on Windows NT, 2000, X, 7, and 10. |
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.
X => XP
As well as Windows 8
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.
done
@@ -26,8 +26,9 @@ | |||
* </p> | |||
* | |||
* @author <a href="mailto:[email protected]">Carlos Sanchez</a> | |||
* | |||
* @deprecated Windows Me is long dead. Update to Windows 10 and use {@link CmdShell}. |
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.
It was Windows ME. Horrible OS.
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.
done
@michael-o