Skip to content

Commit

Permalink
Merge pull request #1723 from cmu-phil/development
Browse files Browse the repository at this point in the history
Bug fix
  • Loading branch information
jdramsey committed Feb 4, 2024
2 parents 8eb3d34 + 8a7b969 commit aecd29b
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion data-reader/pom.xml
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>io.github.cmu-phil</groupId>
<artifactId>tetrad</artifactId>
<version>7.6.2-SNAPSHOT</version>
<version>7.6.2</version>
</parent>
<!-- <groupId>io.github.cmu-phil</groupId>-->
<artifactId>data-reader</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Expand Up @@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>io.github.cmu-phil</groupId>
<artifactId>tetrad</artifactId>
<version>7.6.2-SNAPSHOT</version>
<version>7.6.2</version>
<packaging>pom</packaging>

<name>Tetrad Project</name>
Expand Down
2 changes: 1 addition & 1 deletion tetrad-gui/pom.xml
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>io.github.cmu-phil</groupId>
<artifactId>tetrad</artifactId>
<version>7.6.2-SNAPSHOT</version>
<version>7.6.2</version>
</parent>

<artifactId>tetrad-gui</artifactId>
Expand Down
Expand Up @@ -125,7 +125,7 @@ private void setNumSplits(int numSplits) {
}

public void setup() {
this.numSplitsField = new IntTextField(this.params.getInt("numSplits", 3), 2);
this.numSplitsField = new IntTextField(this.params.getInt("numSplits", 2), 2);
this.numSplitsField.setFilter((value, oldValue) -> {
SplitCasesParamsEditor.this.setNumSplits(value);
return value;
Expand Down
2 changes: 1 addition & 1 deletion tetrad-lib/pom.xml
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>io.github.cmu-phil</groupId>
<artifactId>tetrad</artifactId>
<version>7.6.2-SNAPSHOT</version>
<version>7.6.2</version>
</parent>

<artifactId>tetrad-lib</artifactId>
Expand Down

0 comments on commit aecd29b

Please sign in to comment.