Move test resources to standard maven dirs.
This commit is contained in:
@@ -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() {
|
||||
|
@@ -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);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user