Skip to content

Commit 6d12b46

Browse files
committed
remove bad getproperty
1 parent 7d5ce68 commit 6d12b46

File tree

1 file changed

+0
-14
lines changed

1 file changed

+0
-14
lines changed

src/verbosity.jl

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -289,18 +289,4 @@ function group_options(verbosity::LinearVerbosity, group::Symbol)
289289
else
290290
error("Unknown group: $group")
291291
end
292-
end
293-
294-
function Base.getproperty(verbosity::LinearVerbosity, name::Symbol)
295-
# Check if this is a group name
296-
if name === :error_control
297-
return group_options(verbosity, :error_control)
298-
elseif name === :performance
299-
return group_options(verbosity, :performance)
300-
elseif name === :numerical
301-
return group_options(verbosity, :numerical)
302-
else
303-
# Fall back to default field access
304-
return getfield(verbosity, name)
305-
end
306292
end

0 commit comments

Comments
 (0)