Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -36,3 +36,7 @@ ContributorsCheck/contributors-check/src/main/resources/auth.properties
NullCheck/src/main/resources/auth.properties
auth.properties
/target/

# IntelliJ Files
.idea/
*.iml
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
resources, i.e. build is platform dependent! See: https://maven.apache.org/general.html -->
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<opencsv.version>4.2</opencsv.version>
<log4j2.version>2.11.0</log4j2.version>
<log4j2.version>2.16.0</log4j2.version>
<javax.mail.version>1.4</javax.mail.version>
<reactome.base.version>2.1.0-SNAPSHOT</reactome.base.version>
</properties>
Expand Down Expand Up @@ -167,7 +167,7 @@
<dependency>
<groupId>org.reactome.release</groupId>
<artifactId>release-common-lib</artifactId>
<version>1.2.0</version>
<version>1.2.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>junit</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ protected boolean isEscaped(GKInstance instance) throws Exception {
if (ieDateValue == null) {
return true;
}
DateFormat df = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss.S");
DateFormat df = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
Date ieDate = df.parse(ieDateValue);
return !ieDate.after(CUTOFF_DATE);
}
Expand Down