Skip to content

Instantly share code, notes, and snippets.

View EnderCrypt's full-sized avatar

Magnus G EnderCrypt

View GitHub Profile
@EnderCrypt
EnderCrypt / UriArray.java
Created June 14, 2018 07:20
Simple class for representing url's or file paths, immutable
package net.ddns.endercrypt;
import java.io.File;
import java.net.URI;
import java.net.URL;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;
import java.util.Iterator;
import java.util.List;