Skip to content

Commit

Permalink
fixed wrong year in license headers
Browse files Browse the repository at this point in the history
* replaced 2.5.0 since with 3.0.0

Signed-off-by: Thomas Jaeckle <thomas.jaeckle@bosch.io>
  • Loading branch information
thjaeckle committed Jul 21, 2022
1 parent f0464cc commit a20ebbf
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 10 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2019 Contributors to the Eclipse Foundation
* Copyright (c) 2022 Contributors to the Eclipse Foundation
*
* See the NOTICE file(s) distributed with this work for additional
* information regarding copyright ownership.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2019 Contributors to the Eclipse Foundation
* Copyright (c) 2022 Contributors to the Eclipse Foundation
*
* See the NOTICE file(s) distributed with this work for additional
* information regarding copyright ownership.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2017 Contributors to the Eclipse Foundation
* Copyright (c) 2022 Contributors to the Eclipse Foundation
*
* See the NOTICE file(s) distributed with this work for additional
* information regarding copyright ownership.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ static ThingId generateRandomTypedThingId() {

/**
* Generates a random Thing ID with a specified namespace
* @since 2.5.0
* @since 3.0.0
* @param namespace the specified namespace
* @return the ID
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,9 @@
*/
package org.eclipse.ditto.thingsearch.service.common.config;

import java.util.Map;
import java.util.Map;
import java.util.Optional;

import javax.annotation.Nullable;
import javax.annotation.concurrent.Immutable;

import org.eclipse.ditto.base.service.config.ServiceSpecificConfig;
Expand All @@ -28,8 +26,6 @@

import com.typesafe.config.ConfigValueFactory;

import com.typesafe.config.ConfigValueFactory;

/**
* Provides the configuration settings of the Search service.
*/
Expand Down Expand Up @@ -57,7 +53,7 @@ public interface SearchConfig extends ServiceSpecificConfig, WithHealthCheckConf
* Returns how simple fields are mapped during query parsing.
*
* @return the simple field mapping.
* @since 2.5.0
* @since 3.0.0
*/
Map<String, String> getSimpleFieldMappings();

Expand All @@ -74,7 +70,7 @@ enum SearchConfigValue implements KnownConfigValue {
/**
* How simple fields are mapped during query parsing.
*
* @since 2.5.0
* @since 3.0.0
*/
SIMPLE_FIELD_MAPPINGS("simple-field-mappings", ConfigValueFactory.fromMap(Map.of(
"thingId", "_id",
Expand Down

0 comments on commit a20ebbf

Please sign in to comment.