From 0e5becce5cc25c450ad5379445044a72b761ea1e Mon Sep 17 00:00:00 2001 From: Sebastian Garn Date: Wed, 29 Apr 2020 14:35:42 +0200 Subject: [PATCH] Remove unused type --- processing.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/processing.go b/processing.go index 06fd0f9..ac9dd0a 100644 --- a/processing.go +++ b/processing.go @@ -56,9 +56,6 @@ func FromBytes(b []byte) (ExpandedThingDescription, error) { return td[0], nil } -// RawThingDescription describes a raw thing description -type RawThingDescription json.RawMessage - // Compact compacts the thing description func (e *ExpandedThingDescription) Compact() (json.RawMessage, error) { compactedBytes, err := compact(e)