Clean up, fix license headers

This commit is contained in:
Mark H. Wood
2014-12-15 07:23:53 -05:00
parent dca692f771
commit 6e79e04040
2 changed files with 15 additions and 1 deletions

View File

@@ -1,3 +1,11 @@
/**
* The contents of this file are subject to the license and copyright
* detailed in the LICENSE and NOTICE files at the root of the source
* tree and available online at
*
* http://www.dspace.org/license/
*/
/** Generally useful classes, not particularly tied to any other package. */
package org.dspace.util;

View File

@@ -1,3 +1,10 @@
/**
* The contents of this file are subject to the license and copyright
* detailed in the LICENSE and NOTICE files at the root of the source
* tree and available online at
*
* http://www.dspace.org/license/
*/
package org.dspace.util;
@@ -63,6 +70,5 @@ public class MultiFormatDateParserTest
Date expResult = calendar.getTime();
Date result = MultiFormatDateParser.parse(dateString);
assertEquals(expResult, result);
// assertTrue("expected date not returned", result.equals(expResult));
}
}