Skip to content

Commit

Permalink
issue #327 make fields in DataType.Bare protected
Browse files Browse the repository at this point in the history
  • Loading branch information
rbouckaert committed May 3, 2015
1 parent 42c77f8 commit 39a2ba4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/beast/evolution/datatype/DataType.java
Original file line number Diff line number Diff line change
Expand Up @@ -86,12 +86,12 @@ public abstract class Base extends BEASTObject implements DataType {
/**
* size of the state space *
*/
int stateCount;
protected int stateCount;

/**
* maps string encoding to state codes *
*/
String codeMap;
protected String codeMap;

public String getCodeMap() {
return codeMap;
Expand All @@ -100,12 +100,12 @@ public String getCodeMap() {
/**
* length of the encoding, e.g. 1 for nucleotide, 3 for codons *
*/
int codeLength;
protected int codeLength;

/**
* mapping codes to sets of states *
*/
int[][] mapCodeToStateSet;
protected int[][] mapCodeToStateSet;

@Override
public void initAndValidate() throws Exception {
Expand Down

0 comments on commit 39a2ba4

Please sign in to comment.