Skip to content

Commit

Permalink
3.6.0-beta2
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrey Kurilov committed Nov 30, 2017
1 parent f698fa9 commit c501381
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
Expand Up @@ -14,14 +14,15 @@ public class BasicItem
private int hashCode;

public BasicItem() {
this.hashCode = super.hashCode();
}

public BasicItem(final String value) {
if(value == null || value.isEmpty()) {
throw new IllegalArgumentException("Empty/null item value");
}
this.name = value;
this.hashCode = hashCode();
this.hashCode = super.hashCode();
}

@Override
Expand Down
2 changes: 1 addition & 1 deletion config/defaults.json
Expand Up @@ -272,7 +272,7 @@
}
},
// The Mongoose version
"version": "3.6.0-beta1",
"version": "3.6.0-beta2",
// The aliasing section mapping the old configuration parameters/values to the current ones
"aliasing": [

Expand Down
Expand Up @@ -46,7 +46,7 @@ public void shouldParseWithoutFireballsThrowing()
throws IOException {
final Config config = Config.loadDefaults();
assertThat(config, notNullValue());
assertThat(config.getVersion(), equalTo("3.6.0-beta1", "version"));
assertThat(config.getVersion(), equalTo("3.6.0-beta2", "version"));
final NetConfig netConfig = config.getStorageConfig().getNetConfig();
assertThat(netConfig, notNullValue());
assertThat(netConfig.getTimeoutMilliSec(), equalTo(0, "storage.net.timeoutMilliSec"));
Expand Down

0 comments on commit c501381

Please sign in to comment.