File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
core/src/main/java/org/biojava/bio/proteomics Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 3434public final class StructureTools {
3535 private static final FiniteAlphabet struct ;
3636
37- private static final AtomicSymbol _ ;
37+ private static final AtomicSymbol space ;
3838 private static final AtomicSymbol c ;
3939 private static final AtomicSymbol h ;
4040 private static final AtomicSymbol g ;
@@ -50,7 +50,7 @@ public final class StructureTools {
5050
5151 SymbolTokenization sTok = struct .getTokenization ("token" );
5252
53- _ = (AtomicSymbol ) sTok .parseToken (" " );
53+ space = (AtomicSymbol ) sTok .parseToken (" " );
5454 c = (AtomicSymbol ) sTok .parseToken ("c" );
5555 h = (AtomicSymbol ) sTok .parseToken ("h" );
5656 g = (AtomicSymbol ) sTok .parseToken ("g" );
@@ -69,7 +69,7 @@ public FiniteAlphabet getStructure() {
6969 }
7070
7171 public AtomicSymbol get_ () {
72- return _ ;
72+ return space ;
7373 }
7474
7575 public AtomicSymbol getC () {
You can’t perform that action at this time.
0 commit comments