Skip to content

Commit

Permalink
Fixed getGroup visibility modifier
Browse files Browse the repository at this point in the history
  • Loading branch information
BuddahLD committed Sep 30, 2019
1 parent 7f3cdad commit ea0bdaf
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion ethree-common/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ apply plugin: 'digital.wup.android-maven-publish'
apply plugin: 'org.jetbrains.dokka'

group 'com.virgilsecurity'
version '0.5.0-beta1'
version '0.5.1-beta1'

def APP_ID = hasProperty('APP_ID') ? APP_ID : System.getenv('APP_ID')
def API_PRIVATE_KEY = hasProperty('API_PRIVATE_KEY') ? API_PRIVATE_KEY : System.getenv('API_PRIVATE_KEY')
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -442,7 +442,7 @@ constructor(val identity: String,
*
* @return [Group] if exists, null otherwise.
*/
internal fun getGroup(identifier: String): Group? = groupWorker.getGroup(identifier)
fun getGroup(identifier: String): Group? = groupWorker.getGroup(identifier)

/**
* Loads group from cloud, saves locally.
Expand Down
2 changes: 1 addition & 1 deletion ethree-enclave/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ android {
}

group 'com.virgilsecurity'
version '0.6.0-beta1'
version '0.6.1-beta1'

dependencies {
// Inner dependencies
Expand Down
2 changes: 1 addition & 1 deletion ethree-kotlin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ android {
}

group 'com.virgilsecurity'
version '0.6.0-beta1'
version '0.6.1-beta1'

dependencies {
// Inner dependencies
Expand Down

0 comments on commit ea0bdaf

Please sign in to comment.