Skip to content

Commit b3221cf

Browse files
committed
bump to Java 11 ciftools release
1 parent 27ea76f commit b3221cf

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

biojava-structure/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<dependency>
2222
<groupId>org.rcsb</groupId>
2323
<artifactId>ciftools-java</artifactId>
24-
<version>0.10.1</version>
24+
<version>2.0.2</version>
2525
</dependency>
2626
<dependency>
2727
<groupId>org.rcsb</groupId>

biojava-structure/src/main/java/org/biojava/nbio/structure/io/cif/CifFileConsumerImpl.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -903,8 +903,9 @@ public void consumeStructKeywords(StructKeywords structKeywords) {
903903
StrColumn pdbxKeywords = structKeywords.getPdbxKeywords();
904904
// TODO what is the correct format for these?
905905
if (pdbxKeywords.isDefined()) {
906-
pdbHeader.setDescription(pdbxKeywords.values().collect(Collectors.joining(", ")));
907-
pdbHeader.setClassification(pdbxKeywords.values().collect(Collectors.joining(", ")));
906+
String keywords = pdbxKeywords.values().collect(Collectors.joining(", "));
907+
pdbHeader.setDescription(keywords);
908+
pdbHeader.setClassification(keywords);
908909
}
909910
}
910911

0 commit comments

Comments
 (0)