Address PR feedback on #181

This commit is contained in:
Benjamin Johnson 2023-05-07 22:34:40 +00:00
parent bddf6cfd03
commit 0c493d9e7a
4 changed files with 36 additions and 41 deletions

View file

@ -26,13 +26,7 @@
- (instancetype) init
{
self = [super init];
if (self != nil)
{
_type = GSCSVaraibleTypeVariable;
}
return self;
return [self initWithName: nil type: GSCSVaraibleTypeVariable];
}
- (instancetype) initWithName: (NSString *)name