⁠
kyle wood: Update copyright to 2023
- /*
- * Minecraft Dev for IntelliJ
- *
- * https://minecraftdev.org
- *
- * Copyright (c) 2022 minecraft-dev
- *
- * MIT License
- */
- package com.demonwav.mcdev.errorreporter
- data class LinkedStackTraceElement(val stackElementText: String, val httpLinkText: String) {
- fun apply(text: String): String {
- return text.replace(stackElementText, httpLinkText)
- }
- }
- /*
- * Minecraft Dev for IntelliJ
- *
- * https://minecraftdev.org
- *
- * Copyright (c) 2023 minecraft-dev
- *
- * MIT License
- */
- package com.demonwav.mcdev.errorreporter
- data class LinkedStackTraceElement(val stackElementText: String, val httpLinkText: String) {
- fun apply(text: String): String {
- return text.replace(stackElementText, httpLinkText)
- }
- }