Skip to content

Commit d405a2d

Browse files
committed
.
1 parent ab76e47 commit d405a2d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

protocol/task_agent.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ func (c *PropertiesCollection) Lookup(name, ty string) (interface{}, bool) {
7575
return nil, false
7676
}
7777

78-
func (c *PropertiesCollection) LookupBool(name string) (value bool, ok bool) {
78+
func (c *PropertiesCollection) LookupBool(name string) (value, ok bool) {
7979
if v, ok := c.Lookup(name, "System.Boolean"); ok && v != nil {
8080
b, isBool := v.(bool)
8181
return b, isBool

0 commit comments

Comments
 (0)