Skip to content

Commit

Permalink
#131 #132 #133 changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Biacode committed Oct 31, 2019
1 parent a20643e commit bf00114
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ allprojects {
}

group = 'org.biacode.escommons'
version = '7.3.2_0.0.8'
version = '7.3.2_0.0.9-SNAPSHOT'
sourceCompatibility = 1.8

configurations.all {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,25 +44,25 @@ abstract class AbstractEsCommonsIntegrationTest {
//endregion

//region Protected methods
protected fun refreshIndex(indexName: String) {
protected open fun refreshIndex(indexName: String) {
esCommonsClientWrapper.refreshIndex(indexName)
}

protected fun refreshIndex() {
protected open fun refreshIndex() {
esCommonsClientWrapper.refreshIndex(indexName)
}

protected fun settings(): Settings {
protected open fun settings(): Settings {
return this.settings
}

protected fun settings(settings: Settings) {
protected open fun settings(settings: Settings) {
this.settings = settings
}
//endregion

//region Utility methods
protected fun cleanUpIndices() {
protected open fun cleanUpIndices() {
esCommonsClientWrapper.deleteIndices("*")
}
//endregion
Expand Down

0 comments on commit bf00114

Please sign in to comment.