From 4c089775dd7a0398cbfd7d8733bd96e6c03837d8 Mon Sep 17 00:00:00 2001 From: Paul Smith Date: Sun, 9 Feb 2020 11:10:54 -0500 Subject: [PATCH] Namespace Nothing class (#301) * Namespace Nothing class --- src/avram/attribute.cr | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/avram/attribute.cr b/src/avram/attribute.cr index 967b2ad57..83591e5f8 100644 --- a/src/avram/attribute.cr +++ b/src/avram/attribute.cr @@ -71,7 +71,7 @@ class Avram::Attribute(T) to = to.is_a?(Nothing) ? true : to == value value != original_value && from && to end -end -class Nothing + class Nothing + end end