Skip to content

Commit

Permalink
Upgrade maven parent to version 1.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
rrighi committed May 17, 2019
1 parent 44186f0 commit 2bde9c5
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,6 @@ public void testPropertyBox() {
final PathProperty<Integer> cp = PathProperty.create("testConv", Integer.class)
.converter(new PropertyValueConverter<Integer, String>() {

@SuppressWarnings("boxing")
@Override
public Integer fromModel(String value, Property<Integer> property)
throws PropertyConversionException {
Expand Down Expand Up @@ -478,7 +477,6 @@ private static void testSetValueUsingConverter(PropertyBox box, Property propert
box.setValue(property, value);
}

@SuppressWarnings("boxing")
@Test
public void testBeanProperty() {

Expand Down Expand Up @@ -627,7 +625,6 @@ public void testBeanPropertiesNone() {

}

@SuppressWarnings("boxing")
@Test
public void testIgnoreProperty() {

Expand Down Expand Up @@ -855,7 +852,6 @@ public void testPropertyBoxIdentifier() {
assertTrue(box1.equals(box3));
assertFalse(box1.equals(box2));
assertFalse(box1.equals(null));
assertFalse(box1.equals("a"));
assertFalse(box1.equals(box4));
assertFalse(box4.equals(box2));
assertTrue(box1.equals(box1));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,6 @@ public static class MetaTest5 {

}

@SuppressWarnings("boxing")
@Test
public void testConversionUtils() throws IOException {

Expand Down Expand Up @@ -445,7 +444,6 @@ public void testConversionUtilsErrors() {
assertThrows(IllegalArgumentException.class, () -> ConversionUtils.parseNumber(null, Integer.class));
}

@SuppressWarnings("boxing")
@Test
public void testTypeUtils() {

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>com.holon-platform</groupId>
<artifactId>parent</artifactId>
<version>1.1.3</version>
<version>1.1.4</version>
</parent>

<groupId>com.holon-platform.core</groupId>
Expand Down

0 comments on commit 2bde9c5

Please sign in to comment.