mirror of
https://github.com/LukeHagar/slinky.git
synced 2025-12-06 04:21:20 +00:00
12 lines
349 B
Java
12 lines
349 B
Java
public class Test15 {
|
|
// Sample Java file with URLs
|
|
String url1 = "https://example.com";
|
|
String url2 = "https://svelte.dev";
|
|
String urlBad = "http://example..com";
|
|
String urlMissing = "https://";
|
|
String urlNonexistent = "https://unregistered-website-xyz.com";
|
|
String urlPlaceholder = "https://[tenant].[domain].com";
|
|
}
|
|
|
|
|