From b6abe490ab3e5264d25ecc2016b24891144722c5 Mon Sep 17 00:00:00 2001 From: theraven Date: Sun, 26 Sep 2010 21:32:22 +0000 Subject: [PATCH] Remove some obsolete comments. --- class_table.c | 15 --------------- encoding2.c | 2 -- 2 files changed, 17 deletions(-) diff --git a/class_table.c b/class_table.c index f367c97..0e80494 100644 --- a/class_table.c +++ b/class_table.c @@ -266,21 +266,6 @@ void __objc_resolve_class_links(void) objc_resolve_class_links(); } -/* -// FIXME: Remove this once all uses of it in the runtime have been removed -void __objc_add_class_to_hash(Class class) -{ - Class old_class = class_table_get_safe(class->name); - // If this class is already in the class table, we don't need to do anything. - if (Nil != old_class) { return; } - - LOCK_UNTIL_RETURN(__objc_runtime_mutex); - // Note: The old runtime set the class number here. Nothing ever used the - // class number though, so we don't bother. - class_table_insert (class); -} -*/ - /** * Loads a class. This function assumes that the runtime mutex is locked. */ diff --git a/encoding2.c b/encoding2.c index 347f83d..a598dba 100644 --- a/encoding2.c +++ b/encoding2.c @@ -188,7 +188,6 @@ static const char *sizeof_type(const char *type, size_t *size) *size += union_size; return t; } - //FIXME: union case 'b': { // Consume the b @@ -272,7 +271,6 @@ static const char *alignof_type(const char *type, size_t *align) parse_array(&t, (type_parser)alignof_type, &align); return t; } - //FIXME: union case 'b': { // Consume the b