diff options
| author | Sandro Jäckel <sandro.jaeckel@sap.com> | 2022-10-26 15:23:04 +0200 |
|---|---|---|
| committer | Sandro Jäckel <sandro.jaeckel@sap.com> | 2022-10-28 12:55:16 +0200 |
| commit | 8b38a040830109f19550e7329b82ec5caf76b321 (patch) | |
| tree | 13ecc54219914102f69fb59e005a836a88f78f5c /field_uint64.go | |
| parent | 4f67f4c0a59a850321b37a154efc9bde60539ca8 (diff) | |
| download | go-schwift-8b38a040830109f19550e7329b82ec5caf76b321.tar.gz | |
Fix linting errors
Diffstat (limited to 'field_uint64.go')
| -rw-r--r-- | field_uint64.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/field_uint64.go b/field_uint64.go index d8e63a4..8e1a6c2 100644 --- a/field_uint64.go +++ b/field_uint64.go @@ -97,9 +97,9 @@ func (f FieldUint64Readonly) Exists() bool { // Get returns the value for this header, or 0 if there is no value (or if it is // not a valid uint64). func (f FieldUint64Readonly) Get() uint64 { - return FieldUint64{f.h, f.k}.Get() + return FieldUint64(f).Get() } func (f FieldUint64Readonly) validate() error { - return FieldUint64{f.h, f.k}.validate() + return FieldUint64(f).validate() } |
