Skip to content

Commit

Permalink
preparingForMergeRequest: reverting two temporary changes
Browse files Browse the repository at this point in the history
  • Loading branch information
PetrBainar committed Feb 24, 2019
1 parent b496620 commit 6d3d3df
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 14 deletions.
12 changes: 1 addition & 11 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

<groupId>net.imagej</groupId>
<artifactId>imagej-server</artifactId>
<version>0.1.3.1-SNAPSHOT</version>
<version>0.1.3-SNAPSHOT</version>

<name>ImageJ Server</name>
<description>A simple RESTful web server for ImageJ</description>
Expand Down Expand Up @@ -182,14 +182,4 @@ Wisconsin-Madison.</license.copyrightOwners>
</dependency>
</dependencies>
</dependencyManagement>
<distributionManagement>
<repository>
<id>it4i</id>
<url>https://artifactory.cs.vsb.cz/it4i/</url>
</repository>
<snapshotRepository>
<id>it4i</id>
<url>https://artifactory.cs.vsb.cz/it4i/</url>
</snapshotRepository>
</distributionManagement>
</project>
3 changes: 0 additions & 3 deletions src/main/java/net/imagej/server/mixins/Mixins.java
Original file line number Diff line number Diff line change
Expand Up @@ -189,15 +189,12 @@ protected static abstract class OutOfBoundsFactoryMixIn<T, F> implements
}

public static void registerMixIns(final ObjectMapper mapper) {

mapper.addMixIn(ComplexType.class, ToStringMixIn.class);
mapper.addMixIn(RealType.class, RealTypeMixIn.class);
mapper.addMixIn(IntegerType.class, IntegerTypeMixIn.class);
mapper.addMixIn(ModuleInfo.class, ModuleInfoMixIn.class);
mapper.addMixIn(ModuleItem.class, ModuleItemMixIn.class);
mapper.addMixIn(Type.class, TypeMixIn.class);
mapper.addMixIn(OutOfBoundsFactory.class, OutOfBoundsFactoryMixIn.class);

}

}

0 comments on commit 6d3d3df

Please sign in to comment.