From c683f72e10d8f2c3d5804ae2aa1e5a81d5a928d9 Mon Sep 17 00:00:00 2001 From: Camden Dixie O'Brien Date: Fri, 28 Feb 2025 12:55:11 +0000 Subject: [PATCH] Mark Datum.type and Datum.content as protected instead of internal --- client/src/der.vala | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/src/der.vala b/client/src/der.vala index 184db40..a9f4897 100644 --- a/client/src/der.vala +++ b/client/src/der.vala @@ -71,8 +71,8 @@ namespace StudySystemClient.Der { } public abstract class Datum { - internal uint8 type; - internal uint8[] content; + protected uint8 type; + protected uint8[] content; public uint8[] encode() { var buffer = new ByteArray();