From b16cbe0a98d4276adcc87c2a8941f82e8421afd4 Mon Sep 17 00:00:00 2001 From: Fred Clausen <43556888+fredclausen@users.noreply.github.com> Date: Fri, 26 May 2023 12:21:24 -0600 Subject: [PATCH] remove oooi parsing --- rust/oxide-decoders/src/decoders/acars_labels.rs | 15 --------------- rust/oxide-decoders/src/lib.rs | 1 - 2 files changed, 16 deletions(-) delete mode 100644 rust/oxide-decoders/src/decoders/acars_labels.rs diff --git a/rust/oxide-decoders/src/decoders/acars_labels.rs b/rust/oxide-decoders/src/decoders/acars_labels.rs deleted file mode 100644 index f4c31d2..0000000 --- a/rust/oxide-decoders/src/decoders/acars_labels.rs +++ /dev/null @@ -1,15 +0,0 @@ -// Copyright (C) 2023 Fred Clausen - -// This program is free software; you can redistribute it and/or -// modify it under the terms of the GNU General Public License -// as published by the Free Software Foundation; either version 2 -// of the License, or (at your option) any later version. - -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. - -// You should have received a copy of the GNU General Public License -// along with this program; if not, write to the Free Software -// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA diff --git a/rust/oxide-decoders/src/lib.rs b/rust/oxide-decoders/src/lib.rs index ab2cf65..0dc0a9c 100644 --- a/rust/oxide-decoders/src/lib.rs +++ b/rust/oxide-decoders/src/lib.rs @@ -24,7 +24,6 @@ extern crate log; pub mod decoders { pub mod acars; - pub mod acars_labels; } #[derive(Debug, Clone)]