Skip to content

Commit

Permalink
Merge pull request #28 from isc-egabhart/main
Browse files Browse the repository at this point in the history
Fix another <UNDEFINED> parsing triggers
  • Loading branch information
isc-tleavitt authored Dec 6, 2022
2 parents 74a68cd + 981b8b9 commit 046bcf0
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.1.1] - 2022-12-06

### Fixed
- Fixed another `<UNDEFINED>` error parsing triggers

## [1.1.0] - 2022-12-06

### Added
Expand Down
1 change: 1 addition & 0 deletions cls/pkg/isc/codetidy/CodeTidy.cls
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ ClassMethod Class(pClassName As %String, pSaveChanges = 0) As %Status
set oClass = ##class(%Dictionary.ClassDefinition).%OpenId(pClassName, , .tSc)
if $$$ISERR(tSc) quit tSc

set sqlSchemaName = $$DetermineSchemaName^%occClass(pClassName)
for j = 1:1:oClass.Methods.Count() {
set oMth = oClass.Methods.GetAt(j)

Expand Down
2 changes: 1 addition & 1 deletion module.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<Export generator="IRIS" version="26">
<Document name="isc.codetidy.ZPM"><Module>
<Name>isc.codetidy</Name>
<Version>1.1.0</Version>
<Version>1.1.1</Version>
<Packaging>module</Packaging>
<Resource Name="pkg.isc.codetidy.PKG" Directory="cls" />
<Resource Name="pkg.isc.codetidy.CodeTidy.INC" Directory="inc" />
Expand Down

0 comments on commit 046bcf0

Please sign in to comment.