-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
20 additions
and
26 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 was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
import dev.datlag.sekret.Obfuscate | ||
import dev.datlag.sekret.Secret | ||
|
||
@Obfuscate | ||
data class SecretTest( | ||
@Secret val kString: String, | ||
@Secret val jString: java.lang.String, | ||
@Secret val kCharSequence: CharSequence = "kotlin-char-sequence", | ||
@Secret val jCharSequence: java.lang.CharSequence = "java-char-sequence" as java.lang.CharSequence, | ||
@Secret val kBuilder: StringBuilder = StringBuilder("kotlin-string-builder"), | ||
@Secret val jBuilder: java.lang.StringBuilder = StringBuilder("java-string-builder") as java.lang.StringBuilder, | ||
@Secret val kAppendable: Appendable = kBuilder, | ||
@Secret val jAppendable: java.lang.Appendable = jBuilder, | ||
@Secret val buffer: StringBuffer = StringBuffer("java-string-buffer") | ||
) |
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