Skip to content

Commit d1171d6

Browse files
committed
fix java 21 update error in dependencies
1 parent 8fa988a commit d1171d6

3 files changed

Lines changed: 2 additions & 12 deletions

File tree

daily-coding-problem/pom.xml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,5 @@
77
</parent>
88
<modelVersion>4.0.0</modelVersion>
99
<artifactId>daily-coding-problem</artifactId>
10-
<name>Archetype - daily-coding-problem</name>
11-
<url>http://maven.apache.org</url>
10+
<name>daily-coding-problem</name>
1211
</project>

freestyle/src/test/java/com/devstromo/dp/min_cost_path/MinCostPathUnitTest.java

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -58,13 +58,4 @@ public void testMinCostPathDijkstra() {
5858
assertEquals(45, minCostPath.minCostPathDijkstra(costs));
5959
}
6060

61-
@Test
62-
public void testMinCostToMN() {
63-
var costs = new int[][]{
64-
{1, 2, 3},
65-
{4, 8, 2},
66-
{1, 5, 3}
67-
};
68-
assertEquals(2, minCostPath.minCostToMN(costs, 2, 2));
69-
}
7061
}

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
<dependency>
4343
<groupId>org.projectlombok</groupId>
4444
<artifactId>lombok</artifactId>
45-
<version>1.18.24</version>
45+
<version>1.18.34</version>
4646
<scope>provided</scope>
4747
</dependency>
4848
</dependencies>

0 commit comments

Comments
 (0)