summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoel Fischer <joeljfischer@gmail.com>2017-08-22 16:31:41 -0400
committerJoel Fischer <joeljfischer@gmail.com>2017-08-22 16:31:41 -0400
commit04cdab2853de9b62a607119eed2f4185385238c8 (patch)
tree92694becb99d13125125f3fc7414d7cfbecf2bce
parente6848c716f3b0768ded3c298c5c67a5ecbd8a855 (diff)
downloadsdl_ios-bugfix/issue_700_remove_metadatatype_none_5.0.0.tar.gz
Fix SDLMetadataType including NONEbugfix/issue_700_remove_metadatatype_none_5.0.0
-rw-r--r--SmartDeviceLink/SDLMetadataType.h5
-rw-r--r--SmartDeviceLink/SDLMetadataType.m1
-rw-r--r--SmartDeviceLinkTests/RPCSpecs/EnumSpecs/SDLMetadataTypeSpec.m1
3 files changed, 0 insertions, 7 deletions
diff --git a/SmartDeviceLink/SDLMetadataType.h b/SmartDeviceLink/SDLMetadataType.h
index cc6518b1c..c5a309412 100644
--- a/SmartDeviceLink/SDLMetadataType.h
+++ b/SmartDeviceLink/SDLMetadataType.h
@@ -73,8 +73,3 @@ extern SDLMetadataType const SDLMetadataTypeWeatherTerm;
*/
extern SDLMetadataType const SDLMetadataTypeHumidity;
-/**
- The data in this field is not of a common type or should not be processed. Any time a field does not have a type parameter it is considered as the none type.
- */
-extern SDLMetadataType const SDLMetadataTypeNone;
-
diff --git a/SmartDeviceLink/SDLMetadataType.m b/SmartDeviceLink/SDLMetadataType.m
index ad032569b..22e846ccc 100644
--- a/SmartDeviceLink/SDLMetadataType.m
+++ b/SmartDeviceLink/SDLMetadataType.m
@@ -20,4 +20,3 @@ SDLMetadataType const SDLMetadataTypeMaximumTemperature = @"maximumTemperature";
SDLMetadataType const SDLMetadataTypeMinimumTemperature = @"minimumTemperature";
SDLMetadataType const SDLMetadataTypeWeatherTerm = @"weatherTerm";
SDLMetadataType const SDLMetadataTypeHumidity = @"humidity";
-SDLMetadataType const SDLMetadataTypeNone = @"none";
diff --git a/SmartDeviceLinkTests/RPCSpecs/EnumSpecs/SDLMetadataTypeSpec.m b/SmartDeviceLinkTests/RPCSpecs/EnumSpecs/SDLMetadataTypeSpec.m
index 1ede591ee..0ef9bc45f 100644
--- a/SmartDeviceLinkTests/RPCSpecs/EnumSpecs/SDLMetadataTypeSpec.m
+++ b/SmartDeviceLinkTests/RPCSpecs/EnumSpecs/SDLMetadataTypeSpec.m
@@ -29,7 +29,6 @@ describe(@"Individual Enum Value Tests", ^ {
expect(SDLMetadataTypeMinimumTemperature).to(equal(@"minimumTemperature"));
expect(SDLMetadataTypeWeatherTerm).to(equal(@"weatherTerm"));
expect(SDLMetadataTypeHumidity).to(equal(@"humidity"));
- expect(SDLMetadataTypeNone).to(equal(@"none"));
});
});