Skip to content

Commit

Permalink
fix: Remove className encoding for RevisionRecord (#200)
Browse files Browse the repository at this point in the history
  • Loading branch information
cbaker6 authored Nov 20, 2024
1 parent 6ea0438 commit 4a87f02
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion Sources/ParseCareKit/Models/PCKRevisionRecord.swift
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,6 @@ extension PCKRevisionRecord {

public func encode(to encoder: Encoder) throws {
var container = encoder.container(keyedBy: CodingKeys.self)
try container.encodeIfPresent(className, forKey: .className)
try container.encodeIfPresent(objectId, forKey: .objectId)
try container.encodeIfPresent(createdAt, forKey: .createdAt)
try container.encodeIfPresent(updatedAt, forKey: .updatedAt)
Expand Down

0 comments on commit 4a87f02

Please sign in to comment.