Skip to content

Commit 0c98f2c

Browse files
cn337131wb36499
andauthored
Gh-3368: Update Koryphe version (#3369)
* update koryphe version * test fix and copyright --------- Co-authored-by: wb36499 <[email protected]>
1 parent f370d37 commit 0c98f2c

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

NOTICES

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ and their licenses, below. For information on the dependencies of these dependen
2121
projects below.
2222

2323

24-
Koryphe (uk.gov.gchq.koryphe:koryphe:2.5.2):
24+
Koryphe (uk.gov.gchq.koryphe:koryphe:2.6.0):
2525

2626
- Apache License, Version 2.0
2727

core/store/src/test/java/uk/gov/gchq/gaffer/store/operation/handler/MapHandlerTest.java

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2017-2021 Crown Copyright
2+
* Copyright 2017-2025 Crown Copyright
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -13,6 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16+
1617
package uk.gov.gchq.gaffer.store.operation.handler;
1718

1819
import com.google.common.collect.Lists;
@@ -255,11 +256,12 @@ public void shouldFlatMapMultipleObjects() throws OperationException {
255256
// Given
256257
final MapHandler<Iterable<Iterable<Integer>>, Iterable<Integer>> handler = new MapHandler<>();
257258

259+
final Function<? extends Iterable<? extends Iterable<Integer>>, Iterable<Integer>> iterableConcat = new IterableConcat<>();
258260
final Map<Iterable<Iterable<Integer>>, Iterable<Integer>> operation = new Map.Builder<Iterable<Iterable<Integer>>>()
259261
.input(Arrays.asList(
260262
Arrays.asList(1, 2),
261263
Arrays.asList(3, 4)))
262-
.first(new IterableConcat<>())
264+
.first((Function<Iterable<Iterable<Integer>>, Iterable<Integer>>) iterableConcat)
263265
.build();
264266

265267
// When

pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<!--
3-
~ Copyright 2016-2024 Crown Copyright
3+
~ Copyright 2016-2025 Crown Copyright
44
~
55
~ Licensed under the Apache License, Version 2.0 (the "License");
66
~ you may not use this file except in compliance with the License.
@@ -64,7 +64,7 @@
6464
<spark.minor.version>2.4</spark.minor.version>
6565
<spark.version>${spark.minor.version}.5</spark.version>
6666

67-
<koryphe.version>2.5.2</koryphe.version>
67+
<koryphe.version>2.6.0</koryphe.version>
6868
<accumulo.version>2.0.1</accumulo.version>
6969
<avro.version>1.8.2</avro.version>
7070
<hadoop.version>3.3.3</hadoop.version>

0 commit comments

Comments
 (0)