camel case

This commit is contained in:
Pfeil, Scott Robert 2019-02-14 15:14:25 -05:00
parent 83aa4d91e6
commit a49beacbd6
2 changed files with 7 additions and 7 deletions

View File

@ -21,9 +21,9 @@
static NSMutableDictionary <NSString *, Class>*mapping; static NSMutableDictionary <NSString *, Class>*mapping;
dispatch_once(&onceToken, ^{ dispatch_once(&onceToken, ^{
mapping = [@{ mapping = [@{
@"StandardHeader": MVMCoreUIHeaderView.class, @"standardHeader": MVMCoreUIHeaderView.class,
@"MoleculeStack": MVMCoreUIMoleculeStackView.class, @"moleculeStack": MVMCoreUIMoleculeStackView.class,
@"TwoButtonView": PrimaryButtonView.class @"twoButtonView": PrimaryButtonView.class
} mutableCopy]; } mutableCopy];
}); });
return mapping; return mapping;

View File

@ -19,10 +19,10 @@
static NSMutableDictionary *viewControllerMapping; static NSMutableDictionary *viewControllerMapping;
dispatch_once(&onceToken, ^{ dispatch_once(&onceToken, ^{
viewControllerMapping = [@{ viewControllerMapping = [@{
@"LegacyLargeHeaderSingleLabel": [[MVMCoreViewControllerProgrammaticMappingObject alloc] initWithClass:[LegacyLargeHeaderSingleLabelTemplate class]], @"legacyLargeHeaderSingleLabel": [[MVMCoreViewControllerProgrammaticMappingObject alloc] initWithClass:[LegacyLargeHeaderSingleLabelTemplate class]],
@"TextFieldListForm" : [[MVMCoreViewControllerProgrammaticMappingObject alloc] initWithClass:[MVMCoreUITextFieldListFormViewController class]], @"textFieldListForm" : [[MVMCoreViewControllerProgrammaticMappingObject alloc] initWithClass:[MVMCoreUITextFieldListFormViewController class]],
@"MoleculeStack" : [[MVMCoreViewControllerProgrammaticMappingObject alloc] initWithClass:[MoleculeStackTemplate class]], @"moleculeStack" : [[MVMCoreViewControllerProgrammaticMappingObject alloc] initWithClass:[MoleculeStackTemplate class]],
@"CenterMoleculeStack" : [[MVMCoreViewControllerProgrammaticMappingObject alloc] initWithClass:[MoleculeStackCenteredTemplate class]] @"centerMoleculeStack" : [[MVMCoreViewControllerProgrammaticMappingObject alloc] initWithClass:[MoleculeStackCenteredTemplate class]]
} mutableCopy]; } mutableCopy];
}); });
return viewControllerMapping; return viewControllerMapping;