From b9a2254a665b2812f0e15d911c63579615a53f11 Mon Sep 17 00:00:00 2001 From: "Tristan B. Velloza Kildaire" Date: Thu, 5 Jan 2023 13:01:13 +0200 Subject: [PATCH] - Removed uneeded default arguments --- source/libpb/driver.d | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/libpb/driver.d b/source/libpb/driver.d index c806707..4b8c0f7 100644 --- a/source/libpb/driver.d +++ b/source/libpb/driver.d @@ -100,7 +100,7 @@ public class PocketBase * * Returns: A list of type RecordType */ - private RecordType[] listRecords_internal(RecordType)(string table, ulong page = 1, ulong perPage = 30, string filter = "", bool isAuthCollection = false) + private RecordType[] listRecords_internal(RecordType)(string table, ulong page, ulong perPage, string filter, bool isAuthCollection) { // Set authorization token if setup HTTP httpSettings = HTTP(); @@ -230,7 +230,7 @@ public class PocketBase * * Returns: An instance of the created RecordType */ - private RecordType createRecord_internal(string, RecordType)(string table, RecordType item, bool isAuthCollection = false) + private RecordType createRecord_internal(string, RecordType)(string table, RecordType item, bool isAuthCollection) { idAbleCheck(item);