-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
This reverts commit fc3988b. It has some additional changes which re-revert part of #40601, to reintroduce removed guards to avoid cloning things like Quarkus runtime classes. Otherwise we get test failures.
- Loading branch information
1 parent
88db83a
commit eef5138
Showing
14 changed files
with
166 additions
and
399 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
63 changes: 0 additions & 63 deletions
63
test-framework/junit5/src/main/java/io/quarkus/test/junit/internal/CustomListConverter.java
This file was deleted.
Oops, something went wrong.
41 changes: 0 additions & 41 deletions
41
test-framework/junit5/src/main/java/io/quarkus/test/junit/internal/CustomMapConverter.java
This file was deleted.
Oops, something went wrong.
55 changes: 0 additions & 55 deletions
55
...ramework/junit5/src/main/java/io/quarkus/test/junit/internal/CustomMapEntryConverter.java
This file was deleted.
Oops, something went wrong.
40 changes: 0 additions & 40 deletions
40
test-framework/junit5/src/main/java/io/quarkus/test/junit/internal/CustomSetConverter.java
This file was deleted.
Oops, something went wrong.
6 changes: 5 additions & 1 deletion
6
test-framework/junit5/src/main/java/io/quarkus/test/junit/internal/DeepClone.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,15 @@ | ||
package io.quarkus.test.junit.internal; | ||
|
||
import io.quarkus.bootstrap.app.RunningQuarkusApplication; | ||
|
||
/** | ||
* Strategy to deep clone an object | ||
* | ||
* <p> | ||
* Used in order to clone an object loaded from one ClassLoader into another | ||
*/ | ||
public interface DeepClone { | ||
|
||
Object clone(Object objectToClone); | ||
|
||
void setRunningQuarkusApplication(RunningQuarkusApplication runningQuarkusApplication); | ||
} |
Oops, something went wrong.