Skip to content

Commit a330536

Browse files
benedekhslisson
authored andcommitted
fix(mps-sync-plugin-lib): clean up the binding deactivate message - follow-up of bfffafe
1 parent b53e69a commit a330536

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

mps-sync-plugin-lib/src/main/kotlin/org/modelix/mps/sync/bindings/ModelBinding.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,9 +110,9 @@ class ModelBinding(val model: SModelBase, branch: IBranch, serviceLocator: Servi
110110

111111
isDisposed = true
112112

113-
val message = "${name()} is deactivated and model is removed locally${
113+
val message = "${name()} is deactivated${
114114
if (removeFromServer) {
115-
" and from server"
115+
" and is removed from the server"
116116
} else {
117117
""
118118
}

mps-sync-plugin-lib/src/main/kotlin/org/modelix/mps/sync/bindings/ModuleBinding.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,9 +111,9 @@ class ModuleBinding(val module: AbstractModule, branch: IBranch, serviceLocator:
111111

112112
isDisposed = true
113113

114-
val message = "${name()} is deactivated and module is removed locally${
114+
val message = "${name()} is deactivated${
115115
if (removeFromServer) {
116-
" and from server"
116+
" and module is removed from the server"
117117
} else {
118118
""
119119
}

0 commit comments

Comments
 (0)