Skip to content

Commit 306624c

Browse files
committed
Upgraded to specmatic core 0.75.2, clean up.
1 parent 58b371b commit 306624c

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<properties>
1212
<kotlin.version>1.7.20</kotlin.version>
1313
<maven.compiler>1.8</maven.compiler>
14-
<specmatic.version>0.75.2</specmatic.version>
14+
<specmatic.version>0.74.0</specmatic.version>
1515
<spring.boot.version>2.7.5</spring.boot.version>
1616
</properties>
1717

src/main/java/com/store/controllers/Orders.kt

-3
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,4 @@ class Orders {
4747
@GetMapping("/orders")
4848
fun search(@RequestParam(name="status", required=false) status: String?,
4949
@RequestParam(name="productid", required=false) productid: Int?): List<Order> = DB.findOrders(status, productid)
50-
51-
@GetMapping("/orderinvoices/{id}")
52-
fun getInvoice(@PathVariable("id") id: Int) = "invoice"
5350
}

0 commit comments

Comments
 (0)