diff options
-rw-r--r-- | swift/src/Ice/Value.swift | 4 |
1 files 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 } } |