Move test resources to standard maven dirs.

This commit is contained in:
Paulo Gustavo Veiga
2012-03-10 16:53:54 -03:00
parent b26f9715ff
commit 4f1edd0af4
58 changed files with 1357 additions and 21 deletions

View File

@@ -85,12 +85,9 @@ public class VersionNumber
final VersionNumber versionNumber = (VersionNumber) o;
if (version_d != null ? !version_d.equals(versionNumber.version_d)
: versionNumber.version_d != null) {
return false;
}
return !(version_d != null ? !version_d.equals(versionNumber.version_d)
: versionNumber.version_d != null);
return true;
}
public int hashCode() {

View File

@@ -73,10 +73,11 @@ public class JAXBUtils {
}
}
public static void saveMap(@NotNull com.wisemapping.jaxb.freemind.Map map, @NotNull OutputStream out) throws JAXBException {
public static void saveMap(@NotNull com.wisemapping.jaxb.freemind.Map map, @NotNull OutputStream out) throws JAXBException {
final JAXBContext context = getInstance("com.wisemapping.jaxb.freemind");
final Marshaller marshaller = context.createMarshaller();
marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);
marshaller.marshal(map, out);
}
}