File tree Expand file tree Collapse file tree 1 file changed +21
-23
lines changed
biojava-structure/src/main/java/org/biojava/nbio/structure Expand file tree Collapse file tree 1 file changed +21
-23
lines changed Original file line number Diff line number Diff line change @@ -42,28 +42,26 @@ public class DBRef implements PDBRecord, Serializable{
4242
4343 private final static Logger logger = LoggerFactory .getLogger (DBRef .class );
4444
45- /**
46- *
47- */
48- private static final long serialVersionUID = -1050178577542224379L ;
49- Structure parent ;
50- String idCode ;
51- String chainId ;
52- int seqbegin ;
53- char insertBegin ;
54- int seqEnd ;
55- char insertEnd ;
56-
57- String database ;
58- String dbAccession ;
59- String dbIdCode ;
60-
61- int dbSeqBegin ;
62- char idbnsBegin ;
63- int dbSeqEnd ;
64- char idbnsEnd ;
65-
66- private Long id ;
45+ private static final long serialVersionUID = -1050178577542224379L ;
46+
47+ private Structure parent ;
48+ private String idCode ;
49+ private String chainId ;
50+ private int seqbegin ;
51+ private char insertBegin ;
52+ private int seqEnd ;
53+ private char insertEnd ;
54+
55+ private String database ;
56+ private String dbAccession ;
57+ private String dbIdCode ;
58+
59+ private int dbSeqBegin ;
60+ private char idbnsBegin ;
61+ private int dbSeqEnd ;
62+ private char idbnsEnd ;
63+
64+ private Long id ;
6765
6866 public DBRef () {
6967 insertBegin = ' ' ;
@@ -153,7 +151,7 @@ public String toString(){
153151 try {
154152
155153 @ SuppressWarnings ("rawtypes" )
156- Class c = Class .forName ("org.biojava.nbio.structure.DBRef" );
154+ Class c = Class .forName (DBRef . class . getName () );
157155 Method [] methods = c .getMethods ();
158156
159157 for (Method m : methods ) {
You can’t perform that action at this time.
0 commit comments