Skip to content

Commit 6b6193d

Browse files
committed
outcomented debug stuff
1 parent 02c6d89 commit 6b6193d

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

src/main/java/com/actelion/research/chem/io/pdb/mmcif/MMCIFParser.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -158,8 +158,6 @@ private SortedList<int[]> translateTemplateConnections() {
158158
for (AtomRecord atom : mHetAtoms)
159159
sortedAtoms.add(atom);
160160

161-
for (int i=0; i<sortedAtoms.size(); i++) System.out.println(sortedAtoms.get(i).getSerialId()+"-"+sortedAtoms.get(i).getLabelAtomName()+"-"+sortedAtoms.get(i).getResName()+"-"+sortedAtoms.get(i).getChainID()+"-"+sortedAtoms.get(i).getAuthSeqID());
162-
163161
for (String[] connection : mTemplateConnections) {
164162
probe.setAtomAndCompName(connection[1], connection[0]);
165163
int index1 = sortedAtoms.getIndexAboveEqual(probe);
@@ -185,7 +183,6 @@ private SortedList<int[]> translateTemplateConnections() {
185183
bond[1] = atom1.getSerialId();
186184
}
187185
connections.add(bond);
188-
System.out.println("adding connection: "+atom1.getResName()+"."+atom1.getLabelAtomName()+"."+atom1.getChainID()+"-"+atom1.getAuthSeqID()+"-"+atom2.getResName()+"."+atom2.getLabelAtomName()+"."+atom2.getChainID()+"-"+atom2.getAuthSeqID()+" "+atom1.getSerialId()+"-"+atom2.getSerialId()+" "+connection[0]+"-"+connection[1]+"-"+connection[2]);
189186
}
190187
}
191188
}

0 commit comments

Comments
 (0)