Skip to content

Commit 048aa63

Browse files
committed
Remove use of '_' as identifier.
1 parent d0f9373 commit 048aa63

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

core/src/main/java/org/biojava/bio/proteomics/StructureTools.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
public 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() {

0 commit comments

Comments
 (0)