mirror of
https://github.com/Smallhacker/disbrowser.git
synced 2024-11-21 15:31:38 +00:00
Consistent project name, removed unused class
This commit is contained in:
parent
312b661bda
commit
05eb812999
8
pom.xml
8
pom.xml
@ -3,11 +3,11 @@
|
||||
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<groupId>com.smallhacker.dis-browser</groupId>
|
||||
<artifactId>dis-browser</artifactId>
|
||||
<groupId>com.smallhacker.disbrowser</groupId>
|
||||
<artifactId>disbrowser</artifactId>
|
||||
<packaging>war</packaging>
|
||||
<version>1.0-SNAPSHOT</version>
|
||||
<name>dis-browser</name>
|
||||
<name>disbrowser</name>
|
||||
|
||||
<dependencyManagement>
|
||||
<dependencies>
|
||||
@ -90,7 +90,7 @@
|
||||
</execution>
|
||||
</executions>
|
||||
<configuration>
|
||||
<mainClass>com.smallhacker.dis-browser.Main</mainClass>
|
||||
<mainClass>com.smallhacker.disbrowser.Main</mainClass>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
|
@ -27,7 +27,7 @@ private val VECTORS = listOf(
|
||||
object Service {
|
||||
private const val romName = "Zelda no Densetsu - Kamigami no Triforce (Japan)"
|
||||
private val romDir = Paths.get("""P:\Emulation\ROMs\SNES""")
|
||||
private val metaDir = Paths.get("""P:\Programming\dis-browser""")
|
||||
private val metaDir = Paths.get("""P:\Programming\disbrowser""")
|
||||
private val metaFile = jsonFile<Metadata>(metaDir.resolve("$romName.json"), true)
|
||||
private val metadata by lazy { metaFile.load() }
|
||||
|
||||
|
@ -1,13 +0,0 @@
|
||||
package com.smallhacker.disbrowser.asm
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonIgnore
|
||||
import com.fasterxml.jackson.annotation.JsonInclude
|
||||
|
||||
@JsonInclude(JsonInclude.Include.NON_DEFAULT)
|
||||
data class MetadataRam(
|
||||
var label: String? = null,
|
||||
var length: Int?
|
||||
) {
|
||||
@JsonIgnore
|
||||
fun isEmpty() = (label == null) && (length == null)
|
||||
}
|
Loading…
Reference in New Issue
Block a user