Skip to content

Commit

Permalink
Windows 9X is long dead
Browse files Browse the repository at this point in the history
  • Loading branch information
elharo authored and slachiewicz committed Apr 16, 2021
1 parent 8b8d586 commit 81a813b
Showing 1 changed file with 1 addition and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@
import org.apache.maven.shared.utils.StringUtils;
import org.apache.maven.shared.utils.cli.shell.BourneShell;
import org.apache.maven.shared.utils.cli.shell.CmdShell;
import org.apache.maven.shared.utils.cli.shell.CommandShell;
import org.apache.maven.shared.utils.cli.shell.Shell;

/**
Expand Down Expand Up @@ -123,14 +122,7 @@ private void setDefaultShell()
//If this is windows set the shell to command.com or cmd.exe with correct arguments.
if ( Os.isFamily( Os.FAMILY_WINDOWS ) )
{
if ( Os.isFamily( Os.FAMILY_WIN9X ) )
{
setShell( new CommandShell() );
}
else
{
setShell( new CmdShell() );
}
setShell( new CmdShell() );
}
else
{
Expand Down

0 comments on commit 81a813b

Please sign in to comment.