Skip to content

Commit

Permalink
This should be Optional.
Browse files Browse the repository at this point in the history
  • Loading branch information
bvarner committed Jun 4, 2021
1 parent 79001f6 commit b03843b
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
package io.quarkus.deployment.dev.testing;

import java.time.Duration;
import java.util.List;
import java.util.Optional;

import io.quarkus.runtime.annotations.ConfigGroup;
import io.quarkus.runtime.annotations.ConfigItem;
import io.quarkus.runtime.annotations.ConfigRoot;

import java.time.Duration;
import java.util.List;
import java.util.Optional;

/**
* This is used currently only to suppress warnings about unknown properties
* when the user supplies something like: -Dquarkus.test.profile=someProfile or -Dquarkus.test.native-image-profile=someProfile
Expand Down Expand Up @@ -137,7 +137,7 @@ public class TestConfig {
* JVM parameters that are used to launch jar based integration tests.
*/
@ConfigItem
String integrationJvmArgLine;
Optional<String> integrationJvmArgLine;

/**
* Configures the hang detection in @QuarkusTest. If no activity happens (i.e. no test callbacks are called) over
Expand Down

0 comments on commit b03843b

Please sign in to comment.