Skip to content

Commit 6aa44f8

Browse files
altaitejosemduarte
authored andcommitted
Inserts space when altLoc is null, so that the rest of fields are properly aligned.
1 parent 48708c3 commit 6aa44f8

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

biojava-structure/src/main/java/org/biojava/nbio/structure/io/FileConvert.java

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -407,10 +407,7 @@ record = "ATOM ";
407407
String serial = String.format("%5d",seri);
408408
String fullName = formatAtomName(a);
409409

410-
411-
412-
Character altLoc = a.getAltLoc() ;
413-
410+
Character altLoc = a.getAltLoc();
414411
if ( altLoc == null)
415412
altLoc = ' ';
416413

0 commit comments

Comments
 (0)