Swift: Apply AppCode inspection "unnecessary self"

This commit is contained in:
Jon Reid 2021-12-07 21:23:35 -08:00
parent f82c067544
commit 7c615c077f
No known key found for this signature in database
GPG Key ID: 27DEB93ABA9EEA26

View File

@ -12,6 +12,6 @@ public class Item {
extension Item: CustomStringConvertible { extension Item: CustomStringConvertible {
public var description: String { public var description: String {
return self.name + ", " + String(self.sellIn) + ", " + String(self.quality); return name + ", " + String(sellIn) + ", " + String(quality);
} }
} }