Skip to content

Commit 7d732a9

Browse files
committed
Issue #103 Disable ErrorProne
1 parent 71c40f7 commit 7d732a9

2 files changed

Lines changed: 1 addition & 36 deletions

File tree

PgBulkInsert/pom.xml

Lines changed: 0 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -61,47 +61,11 @@
6161
<arg>-Xlint:unchecked</arg>
6262
<arg>-Xlint:deprecation</arg>
6363
<arg>-XDcompilePolicy=simple</arg>
64-
<arg>-Xplugin:ErrorProne -Xep:NullAway:ERROR -XepOpt:NullAway:AnnotatedPackages=de.bytefish.pgbulkinsert</arg>
6564
</compilerArgs>
66-
<annotationProcessorPaths>
67-
<path>
68-
<groupId>com.google.errorprone</groupId>
69-
<artifactId>error_prone_core</artifactId>
70-
<version>2.3.4</version>
71-
</path>
72-
<path>
73-
<groupId>com.uber.nullaway</groupId>
74-
<artifactId>nullaway</artifactId>
75-
<version>0.7.10</version>
76-
</path>
77-
</annotationProcessorPaths>
7865
<showDeprecation>true</showDeprecation>
7966
<showWarnings>true</showWarnings>
8067
</configuration>
8168
</plugin>
82-
<plugin>
83-
<groupId>org.apache.maven.plugins</groupId>
84-
<artifactId>maven-jar-plugin</artifactId>
85-
<version>3.2.0</version>
86-
<executions>
87-
<execution>
88-
<id>jar-jdk8</id>
89-
<goals>
90-
<goal>jar</goal>
91-
</goals>
92-
<configuration>
93-
<classifier>jdk8</classifier>
94-
<classesDirectory>${project.build.outputDirectory}_jdk8</classesDirectory>
95-
<archive>
96-
<manifest>
97-
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
98-
<addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
99-
</manifest>
100-
</archive>
101-
</configuration>
102-
</execution>
103-
</executions>
104-
</plugin>
10569
</plugins>
10670
</pluginManagement>
10771
<plugins>

PgBulkInsert/src/main/java/de/bytefish/pgbulkinsert/bulkprocessor/BulkProcessor.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ public class BulkProcessor<TEntity> implements AutoCloseable {
1818

1919
@Nullable
2020
private final ScheduledThreadPoolExecutor scheduler;
21+
2122
@Nullable
2223
private final ScheduledFuture<?> scheduledFuture;
2324

0 commit comments

Comments
 (0)