Skip to content

Commit 17926f8

Browse files
committed
removed redundant branch in UserAction, updated Changelog
1 parent f0855e8 commit 17926f8

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1111
- Web UI includes a "Push Branch" button for local branches that are ahead of upstream
1212

1313
### Fixed
14+
- Fixed empty mappings when SourceControl.Git.Settings is instantiated (#250)
1415
- Studio export path doesn't get weird mixed slahes on Windows (#252)
1516
- Fixed bug with adding mappings through the Settings page (#270)
1617
- Pulling add/delete of multiple non-IRIS files no longer causes error (#273)

cls/SourceControl/Git/Utils.cls

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -233,11 +233,6 @@ ClassMethod UserAction(InternalName As %String, MenuName As %String, ByRef Targe
233233
set ec = ..AddToSourceControl(InternalName)
234234
} elseif (menuItemName = "RemoveFromSC") {
235235
set ec = ..RemoveFromSourceControl(InternalName)
236-
} // is there any reason this code block is repeated?
237-
elseif (menuItemName = "Commit") {
238-
set Target = "Please enter a commit message"
239-
set Action = 7
240-
quit $$$OK
241236
}
242237
quit ec
243238
}

0 commit comments

Comments
 (0)