aboutsummaryrefslogtreecommitdiffstats
path: root/Frameworks/PostgresKit/Source/FLXPostgresTypeDateTimeHandler.m
diff options
context:
space:
mode:
authorstuconnolly <stuart02@gmail.com>2012-09-07 09:57:31 +0000
committerstuconnolly <stuart02@gmail.com>2012-09-07 09:57:31 +0000
commite8bf8bf422b83a55cefd1bdf149f380a822eb880 (patch)
tree6c9b5114ca6be1aebb28e212352599018e4115a7 /Frameworks/PostgresKit/Source/FLXPostgresTypeDateTimeHandler.m
parent1a20cd03f29b0c0ee842008b1445ba54ad23dc69 (diff)
downloadsequelpro-e8bf8bf422b83a55cefd1bdf149f380a822eb880.tar.gz
sequelpro-e8bf8bf422b83a55cefd1bdf149f380a822eb880.tar.bz2
sequelpro-e8bf8bf422b83a55cefd1bdf149f380a822eb880.zip
Remove object quoting and keep track of data type support.
Diffstat (limited to 'Frameworks/PostgresKit/Source/FLXPostgresTypeDateTimeHandler.m')
-rw-r--r--Frameworks/PostgresKit/Source/FLXPostgresTypeDateTimeHandler.m10
1 files changed, 0 insertions, 10 deletions
diff --git a/Frameworks/PostgresKit/Source/FLXPostgresTypeDateTimeHandler.m b/Frameworks/PostgresKit/Source/FLXPostgresTypeDateTimeHandler.m
index 8f8ace87..130d6590 100644
--- a/Frameworks/PostgresKit/Source/FLXPostgresTypeDateTimeHandler.m
+++ b/Frameworks/PostgresKit/Source/FLXPostgresTypeDateTimeHandler.m
@@ -72,8 +72,6 @@ static FLXPostgresOid FLXPostgresTypeDateTimeTypes[] =
- (NSData *)remoteDataFromObject:(id)object type:(FLXPostgresOid *)type
{
- if (!object || !type || ![object isKindOfClass:[NSDate class]]) return nil;
-
return nil;
}
@@ -101,14 +99,6 @@ static FLXPostgresOid FLXPostgresTypeDateTimeTypes[] =
}
}
-- (NSString *)quotedStringFromObject:(id)object
-{
- if (!object || ![object isKindOfClass:[NSString class]]) return nil;
-
- // TODO: Imeplement me!
- return nil;
-}
-
#pragma mark -
#pragma mark Private API