Merge pull request #4 from roryokane/patch-1

Improve wording when stating date of unknown mod
This commit is contained in:
Vhati 2014-08-20 15:50:48 -04:00
commit bdda972091

View file

@ -619,9 +619,9 @@ public class ManagerFrame extends JFrame implements ActionListener, ModsScanObse
body += "No info is available for the selected mod.\n\n";
if ( modDate != null ) {
SimpleDateFormat dateFormat = new SimpleDateFormat( "yyyy/MM/dd" );
SimpleDateFormat dateFormat = new SimpleDateFormat( "yyyy-MM-dd" );
String dateString = dateFormat.format( modDate );
body += "It was released sometime after "+ dateString +".\n\n";
body += "It was released some time after "+ dateString +".\n\n";
} else {
body += "The date of its release could not be determined.\n\n";
}