Skip to content

Commit

Permalink
more lint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
compscidr committed Aug 8, 2024
1 parent 42e3fbf commit b0ae716
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@ package com.jasonernst.packetdumper.filedumper
import com.jasonernst.packetdumper.EtherType
import java.nio.ByteBuffer

class PcapNgFilePacketDumper(override var filename: String) : AbstractFilePacketDumper() {
class PcapNgFilePacketDumper(
override var filename: String,
) : AbstractFilePacketDumper() {
override fun open() {
TODO("Not yet implemented")
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@ package com.jasonernst.packetdumper.serverdumper
import com.jasonernst.packetdumper.EtherType
import java.nio.ByteBuffer

class PcapNgTcpServerPacketDumper(val listenPort: Int = DEFAULT_PORT) : AbstractServerPacketDumper() {
class PcapNgTcpServerPacketDumper(
val listenPort: Int = DEFAULT_PORT,
) : AbstractServerPacketDumper() {
companion object {
const val DEFAULT_PORT = 19000
}
Expand Down

0 comments on commit b0ae716

Please sign in to comment.