Remove unused imports (#2407)

Signed-off-by: Avgustin Marinov <Avgustin.Marinov@bosch.com>
This commit is contained in:
Avgustin Marinov
2025-05-19 08:54:18 +03:00
committed by GitHub
parent 12140e468d
commit 91811f7aa8
3 changed files with 2 additions and 4 deletions

View File

@@ -9,7 +9,6 @@
*/
package org.eclipse.hawkbit.repository;
import java.util.Arrays;
import java.util.Collections;
import java.util.List;

View File

@@ -23,9 +23,9 @@ public interface FieldValueConverter<T extends Enum<T>> {
/**
* Converts the given {@code value} into the representation to build ageneric query.
*
* @param enumValue the enum to build the value for
* @param enumValue the enum value to build the value for
* @param value the value in string representation
* @return the converted object or {@code null} if conversation fails, if given enum does not need to be converted the
* @return the converted object if conversion is applicable, or if the given enum value does not need to be converted the
* unmodified {@code value} is returned.
* @throws IllegalArgumentException if the value is not supported
*/

View File

@@ -11,7 +11,6 @@ package org.eclipse.hawkbit.repository.rsql;
import lombok.Getter;
import lombok.NoArgsConstructor;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Value;
/**