Remove stack trace for list converter

Addresses #1331
This commit is contained in:
Dan Mulloy 2021-07-10 11:09:56 -04:00
parent 9c20455bf6
commit 4c0c18d7c6
No known key found for this signature in database
GPG Key ID: BFACD592A5F0DFD6
2 changed files with 3 additions and 3 deletions

View File

@ -150,8 +150,8 @@
</activation>
<properties>
<project.build.number>-b${env.BUILD_NUMBER}</project.build.number>
<!--<project.fullVersion>${project.version}${project.build.number}</project.fullVersion>-->
<project.fullVersion>${project.version}</project.fullVersion>
<project.fullVersion>${project.version}${project.build.number}</project.fullVersion>
<!--<project.fullVersion>${project.version}</project.fullVersion>-->
</properties>
</profile>

View File

@ -284,7 +284,7 @@ public class BukkitConverters {
}
};
} catch (ReflectiveOperationException ex) {
ex.printStackTrace();
// ex.printStackTrace();
supplier = ArrayList::new;
newList = new ArrayList<>();
}