Skip to content

Commit 468d1a3

Browse files
fix: double headers
Removed double headers Signed-off-by: Dan Calavrezo <195309321+dcalavrezo-qorix@users.noreply.github.com>
1 parent b055422 commit 468d1a3

File tree

11 files changed

+0
-121
lines changed

11 files changed

+0
-121
lines changed

src/rust/rust_kvs/src/error_code.rs

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -10,17 +10,6 @@
1010
//
1111
// SPDX-License-Identifier: Apache-2.0
1212
// *******************************************************************************
13-
// Copyright (c) 2025 Contributors to the Eclipse Foundation
14-
//
15-
// See the NOTICE file(s) distributed with this work for additional
16-
// information regarding copyright ownership.
17-
//
18-
// This program and the accompanying materials are made available under the
19-
// terms of the Apache License Version 2.0 which is available at
20-
// <https://www.apache.org/licenses/LICENSE-2.0>
21-
//
22-
// SPDX-License-Identifier: Apache-2.0
23-
2413
extern crate alloc;
2514

2615
use alloc::string::FromUtf8Error;

src/rust/rust_kvs/src/json_backend.rs

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -10,17 +10,6 @@
1010
//
1111
// SPDX-License-Identifier: Apache-2.0
1212
// *******************************************************************************
13-
// Copyright (c) 2025 Contributors to the Eclipse Foundation
14-
//
15-
// See the NOTICE file(s) distributed with this work for additional
16-
// information regarding copyright ownership.
17-
//
18-
// This program and the accompanying materials are made available under the
19-
// terms of the Apache License Version 2.0 which is available at
20-
// <https://www.apache.org/licenses/LICENSE-2.0>
21-
//
22-
// SPDX-License-Identifier: Apache-2.0
23-
2413
use crate::error_code::ErrorCode;
2514
use crate::kvs_api::{InstanceId, SnapshotId};
2615
use crate::kvs_backend::KvsBackend;

src/rust/rust_kvs/src/kvs.rs

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -10,17 +10,6 @@
1010
//
1111
// SPDX-License-Identifier: Apache-2.0
1212
// *******************************************************************************
13-
// Copyright (c) 2025 Contributors to the Eclipse Foundation
14-
//
15-
// See the NOTICE file(s) distributed with this work for additional
16-
// information regarding copyright ownership.
17-
//
18-
// This program and the accompanying materials are made available under the
19-
// terms of the Apache License Version 2.0 which is available at
20-
// <https://www.apache.org/licenses/LICENSE-2.0>
21-
//
22-
// SPDX-License-Identifier: Apache-2.0
23-
2413
use crate::error_code::ErrorCode;
2514
use crate::kvs_api::{InstanceId, KvsApi, KvsDefaults, KvsLoad, SnapshotId};
2615
use crate::kvs_backend::KvsBackend;

src/rust/rust_kvs/src/kvs_api.rs

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -10,17 +10,6 @@
1010
//
1111
// SPDX-License-Identifier: Apache-2.0
1212
// *******************************************************************************
13-
// Copyright (c) 2025 Contributors to the Eclipse Foundation
14-
//
15-
// See the NOTICE file(s) distributed with this work for additional
16-
// information regarding copyright ownership.
17-
//
18-
// This program and the accompanying materials are made available under the
19-
// terms of the Apache License Version 2.0 which is available at
20-
// <https://www.apache.org/licenses/LICENSE-2.0>
21-
//
22-
// SPDX-License-Identifier: Apache-2.0
23-
2413
use crate::error_code::ErrorCode;
2514
use crate::kvs_value::KvsValue;
2615
use core::fmt;

src/rust/rust_kvs/src/kvs_backend.rs

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -10,17 +10,6 @@
1010
//
1111
// SPDX-License-Identifier: Apache-2.0
1212
// *******************************************************************************
13-
// Copyright (c) 2025 Contributors to the Eclipse Foundation
14-
//
15-
// See the NOTICE file(s) distributed with this work for additional
16-
// information regarding copyright ownership.
17-
//
18-
// This program and the accompanying materials are made available under the
19-
// terms of the Apache License Version 2.0 which is available at
20-
// <https://www.apache.org/licenses/LICENSE-2.0>
21-
//
22-
// SPDX-License-Identifier: Apache-2.0
23-
2413
use crate::error_code::ErrorCode;
2514
use crate::kvs_api::{InstanceId, SnapshotId};
2615
use crate::kvs_value::KvsMap;

src/rust/rust_kvs/src/kvs_builder.rs

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -10,17 +10,6 @@
1010
//
1111
// SPDX-License-Identifier: Apache-2.0
1212
// *******************************************************************************
13-
// Copyright (c) 2025 Contributors to the Eclipse Foundation
14-
//
15-
// See the NOTICE file(s) distributed with this work for additional
16-
// information regarding copyright ownership.
17-
//
18-
// This program and the accompanying materials are made available under the
19-
// terms of the Apache License Version 2.0 which is available at
20-
// <https://www.apache.org/licenses/LICENSE-2.0>
21-
//
22-
// SPDX-License-Identifier: Apache-2.0
23-
2413
use crate::error_code::ErrorCode;
2514
use crate::json_backend::JsonBackendBuilder;
2615
use crate::kvs::{Kvs, KvsParameters};

src/rust/rust_kvs/src/kvs_mock.rs

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -10,17 +10,6 @@
1010
//
1111
// SPDX-License-Identifier: Apache-2.0
1212
// *******************************************************************************
13-
// Copyright (c) 2025 Contributors to the Eclipse Foundation
14-
//
15-
// See the NOTICE file(s) distributed with this work for additional
16-
// information regarding copyright ownership.
17-
//
18-
// This program and the accompanying materials are made available under the
19-
// terms of the Apache License Version 2.0 which is available at
20-
// <https://www.apache.org/licenses/LICENSE-2.0>
21-
//
22-
// SPDX-License-Identifier: Apache-2.0
23-
2413
use crate::error_code::ErrorCode;
2514
use crate::kvs_api::{KvsApi, SnapshotId};
2615
use crate::kvs_value::{KvsMap, KvsValue};

src/rust/rust_kvs/src/kvs_serialize.rs

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -10,17 +10,6 @@
1010
//
1111
// SPDX-License-Identifier: Apache-2.0
1212
// *******************************************************************************
13-
// Copyright (c) 2025 Contributors to the Eclipse Foundation
14-
//
15-
// See the NOTICE file(s) distributed with this work for additional
16-
// information regarding copyright ownership.
17-
//
18-
// This program and the accompanying materials are made available under the
19-
// terms of the Apache License Version 2.0 which is available at
20-
// <https://www.apache.org/licenses/LICENSE-2.0>
21-
//
22-
// SPDX-License-Identifier: Apache-2.0
23-
2413
use crate::error_code::ErrorCode;
2514
use crate::kvs_value::{KvsMap, KvsValue};
2615

src/rust/rust_kvs/src/kvs_value.rs

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -10,17 +10,6 @@
1010
//
1111
// SPDX-License-Identifier: Apache-2.0
1212
// *******************************************************************************
13-
// Copyright (c) 2025 Contributors to the Eclipse Foundation
14-
//
15-
// See the NOTICE file(s) distributed with this work for additional
16-
// information regarding copyright ownership.
17-
//
18-
// This program and the accompanying materials are made available under the
19-
// terms of the Apache License Version 2.0 which is available at
20-
// <https://www.apache.org/licenses/LICENSE-2.0>
21-
//
22-
// SPDX-License-Identifier: Apache-2.0
23-
2413
use core::convert::TryFrom;
2514
use std::collections::HashMap;
2615

src/rust/rust_kvs/src/lib.rs

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -10,17 +10,6 @@
1010
//
1111
// SPDX-License-Identifier: Apache-2.0
1212
// *******************************************************************************
13-
// Copyright (c) 2025 Contributors to the Eclipse Foundation
14-
//
15-
// See the NOTICE file(s) distributed with this work for additional
16-
// information regarding copyright ownership.
17-
//
18-
// This program and the accompanying materials are made available under the
19-
// terms of the Apache License Version 2.0 which is available at
20-
// <https://www.apache.org/licenses/LICENSE-2.0>
21-
//
22-
// SPDX-License-Identifier: Apache-2.0
23-
2413
//! # Key-Value-Storage API and Implementation
2514
//!
2615
//! ## Introduction

0 commit comments

Comments
 (0)