Skip to content

Commit

Permalink
Make order of command-line arguments match output
Browse files Browse the repository at this point in the history
  • Loading branch information
JonathanLennox committed Oct 15, 2024
1 parent 8f49368 commit 6182860
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/test/kotlin/org/ice4j/socket/SocketPoolTest.kt
Original file line number Diff line number Diff line change
Expand Up @@ -239,8 +239,8 @@ class SocketPoolTest : ShouldSpec() {
@JvmStatic
fun main(args: Array<String>) {
if (args.size >= 2) {
val numThreads = args[0].toInt()
val numSockets = args[1].toInt()
val numSockets = args[0].toInt()
val numThreads = args[1].toInt()
val numPackets = if (args.size > 2) {
args[2].toInt()
} else {
Expand Down

0 comments on commit 6182860

Please sign in to comment.