Skip to content

Commit

Permalink
removed redundant branch in UserAction, updated Changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
isc-rsaptars committed Sep 14, 2023
1 parent f0855e8 commit 17926f8
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Web UI includes a "Push Branch" button for local branches that are ahead of upstream

### Fixed
- Fixed empty mappings when SourceControl.Git.Settings is instantiated (#250)
- Studio export path doesn't get weird mixed slahes on Windows (#252)
- Fixed bug with adding mappings through the Settings page (#270)
- Pulling add/delete of multiple non-IRIS files no longer causes error (#273)
Expand Down
5 changes: 0 additions & 5 deletions cls/SourceControl/Git/Utils.cls
Original file line number Diff line number Diff line change
Expand Up @@ -233,11 +233,6 @@ ClassMethod UserAction(InternalName As %String, MenuName As %String, ByRef Targe
set ec = ..AddToSourceControl(InternalName)
} elseif (menuItemName = "RemoveFromSC") {
set ec = ..RemoveFromSourceControl(InternalName)
} // is there any reason this code block is repeated?
elseif (menuItemName = "Commit") {
set Target = "Please enter a commit message"
set Action = 7
quit $$$OK
}
quit ec
}
Expand Down

0 comments on commit 17926f8

Please sign in to comment.