mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-26 18:21:04 +00:00
Removed excess semicolons
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@11778 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
f0fae9cad7
commit
23aabb48a7
1 changed files with 8 additions and 8 deletions
|
@ -440,37 +440,37 @@ NSString *NSURLPartKey_query = @"query";
|
||||||
return [[self explode] objectForKey: NSURLPartKey_host];
|
return [[self explode] objectForKey: NSURLPartKey_host];
|
||||||
}
|
}
|
||||||
|
|
||||||
- (NSNumber*) port;
|
- (NSNumber*) port
|
||||||
{
|
{
|
||||||
return [[self explode] objectForKey: NSURLPartKey_port];
|
return [[self explode] objectForKey: NSURLPartKey_port];
|
||||||
}
|
}
|
||||||
|
|
||||||
- (NSString*) user;
|
- (NSString*) user
|
||||||
{
|
{
|
||||||
return [[self explode] objectForKey: NSURLPartKey_user];
|
return [[self explode] objectForKey: NSURLPartKey_user];
|
||||||
}
|
}
|
||||||
|
|
||||||
- (NSString*) password;
|
- (NSString*) password
|
||||||
{
|
{
|
||||||
return [[self explode] objectForKey: NSURLPartKey_password];
|
return [[self explode] objectForKey: NSURLPartKey_password];
|
||||||
}
|
}
|
||||||
|
|
||||||
- (NSString*) path;
|
- (NSString*) path
|
||||||
{
|
{
|
||||||
return [[self explode] objectForKey: NSURLPartKey_path];
|
return [[self explode] objectForKey: NSURLPartKey_path];
|
||||||
}
|
}
|
||||||
|
|
||||||
- (NSString*) fragment;
|
- (NSString*) fragment
|
||||||
{
|
{
|
||||||
return [[self explode] objectForKey: NSURLPartKey_fragment];
|
return [[self explode] objectForKey: NSURLPartKey_fragment];
|
||||||
}
|
}
|
||||||
|
|
||||||
- (NSString*) parameterString;
|
- (NSString*) parameterString
|
||||||
{
|
{
|
||||||
return [[self explode] objectForKey: NSURLPartKey_parameterString];
|
return [[self explode] objectForKey: NSURLPartKey_parameterString];
|
||||||
}
|
}
|
||||||
|
|
||||||
- (NSString*) query;
|
- (NSString*) query
|
||||||
{
|
{
|
||||||
return [[self explode] objectForKey: NSURLPartKey_query];
|
return [[self explode] objectForKey: NSURLPartKey_query];
|
||||||
}
|
}
|
||||||
|
@ -647,7 +647,7 @@ NSString *NSURLPartKey_query = @"query";
|
||||||
}
|
}
|
||||||
|
|
||||||
- (BOOL) setProperty: (id)property
|
- (BOOL) setProperty: (id)property
|
||||||
forKey: (NSString*)propertyKey;
|
forKey: (NSString*)propertyKey
|
||||||
{
|
{
|
||||||
NSURLHandle *handle = [self URLHandleUsingCache: YES];
|
NSURLHandle *handle = [self URLHandleUsingCache: YES];
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue