From 9bcf281677e79987e77c1866f933fc6be3e64536 Mon Sep 17 00:00:00 2001 From: Jose Date: Mon, 17 Jun 2019 13:56:21 +0200 Subject: Use ObjectTraits for Ice.Value ice_staticId/ice_id --- swift/src/Ice/Value.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/swift/src/Ice/Value.swift b/swift/src/Ice/Value.swift index 554105ad988..c5b89064004 100644 --- a/swift/src/Ice/Value.swift +++ b/swift/src/Ice/Value.swift @@ -10,7 +10,7 @@ open class Value { /// /// - returns: `String` - The Slice type ID. open func ice_id() -> String { - return "::Ice::Object" + return ObjectTraits.staticId } open func _iceReadImpl(from _: InputStream) throws {} @@ -50,7 +50,7 @@ open class Value { /// /// - returns: `String` - The Slice type ID. open class func ice_staticId() -> String { - return "::Ice::Object" + return ObjectTraits.staticId } } -- cgit v1.2.3