Skip to content

Commit

Permalink
removing CWUUIDCStringPrependedWithString()
Browse files Browse the repository at this point in the history
instead use [CWUUIDStringPrependedWithString() UTF8String]
  • Loading branch information
Machx committed Mar 31, 2013
1 parent 4e80e17 commit bab6db5
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 12 deletions.
8 changes: 0 additions & 8 deletions Source/CWFoundation.h
Original file line number Diff line number Diff line change
Expand Up @@ -50,14 +50,6 @@ BOOL CWClassExists(NSString * class);
*/
NSString *CWUUIDStringPrependedWithString(NSString *preString);

/**
Returns a unique c string prepended by the passed in string
@param preString the string to be prepended on the unique string
@return C String with a UUID String prepended with the prestring argument
*/
const char *CWUUIDCStringPrependedWithString(NSString *preString);

/**
Schedules the block to be executed on the next run loop on the main thread
Expand Down
4 changes: 0 additions & 4 deletions Source/CWFoundation.m
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,6 @@ BOOL CWClassExists(NSString * class) {
return [NSString stringWithFormat:@"%@%@",preString,[NSString cw_uuidString]];
}

const char *CWUUIDCStringPrependedWithString(NSString *preString) {
return [CWUUIDStringPrependedWithString(preString) UTF8String];
}

void CWNextRunLoop(dispatch_block_t block) {
static dispatch_queue_t queue = nil;
static dispatch_once_t onceToken;
Expand Down

0 comments on commit bab6db5

Please sign in to comment.