What object-oriented programming advice is this code violating?
def check_for_overheating(system_monitor)
if system_monitor.temperature > 100
system_monitor.sound_alarms
end
end
Note: please just answer this in your head, not in the comments. Don't spoil this for future quiz-takers!