- Removed uneeded default arguments

This commit is contained in:
Tristan B. Velloza Kildaire 2023-01-05 13:01:13 +02:00
parent 1b3ef337a5
commit b9a2254a66
1 changed files with 2 additions and 2 deletions

View File

@ -100,7 +100,7 @@ public class PocketBase
*
* Returns: A list of type <code>RecordType</code>
*/
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 <code>RecordType</code>
*/
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);