From b0ed4a0c963a340e5f65a2c53322fbcdea2ad53a Mon Sep 17 00:00:00 2001 From: Drew Johnston <31270488+drewjj@users.noreply.github.com> Date: Mon, 30 Dec 2024 15:46:53 -0700 Subject: [PATCH] Remove outdated comment --- .../test/java/us/dot/its/jpo/ode/udp/map/MapReceiverTest.java | 4 ---- 1 file changed, 4 deletions(-) diff --git a/jpo-ode-svcs/src/test/java/us/dot/its/jpo/ode/udp/map/MapReceiverTest.java b/jpo-ode-svcs/src/test/java/us/dot/its/jpo/ode/udp/map/MapReceiverTest.java index f96ae538a..0ac327004 100644 --- a/jpo-ode-svcs/src/test/java/us/dot/its/jpo/ode/udp/map/MapReceiverTest.java +++ b/jpo-ode-svcs/src/test/java/us/dot/its/jpo/ode/udp/map/MapReceiverTest.java @@ -73,10 +73,6 @@ void testMapReceiver() throws IOException { // Set the clock to a fixed time so that the MapReceiver will produce the same output every time DateTimeUtils.setClock( Clock.fixed(Instant.parse("2020-01-01T00:00:00Z"), Clock.systemUTC().getZone())); - // Set the static schema version to 7 so that the MapReceiver will produce the same output every time - // This is necessary because the schema version is set in only one of the OdeMsgMetadata constructors (this should be fixed) - // and the schema version is set to the static schema version in the constructor. This means that the schema version - // will be set to 6 for all OdeMsgMetadata objects created in the MapReceiver run method's code path. MapReceiver mapReceiver = new MapReceiver(udpReceiverProperties.getMap(), kafkaTemplate, rawEncodedJsonTopics.getMap());