From 19d66735188c46216b24d763949b0b81d3541e77 Mon Sep 17 00:00:00 2001 From: Mikhail Yakshin Date: Thu, 28 Mar 2024 21:16:09 +0000 Subject: [PATCH] Revert "Add kaitai.Struct: common interface providing Kaitai_IO() getter" This reverts commit 279452246e223aea13f0e734792fd12388a6f812. --- README.md | 2 +- kaitai/struct.go | 7 ------- 2 files changed, 1 insertion(+), 8 deletions(-) delete mode 100644 kaitai/struct.go diff --git a/README.md b/README.md index 41370b7..ae2db29 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ Further reading: ## Licensing -Copyright 2017-2024 Kaitai Project: MIT license +Copyright 2017-2022 Kaitai Project: MIT license Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the diff --git a/kaitai/struct.go b/kaitai/struct.go deleted file mode 100644 index d4eb62b..0000000 --- a/kaitai/struct.go +++ /dev/null @@ -1,7 +0,0 @@ -package kaitai - -// Struct is the common interface guaranteed to be implemented by all types generated -// by Kaitai Struct compiler. -type Struct interface { - Kaitai_IO() *kaitai.Stream -}