Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/main/java/com/anthonynsimon/url/PathResolver.java
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
/**
* PathResolver is a utility class that resolves a reference path against a base path.
*/
final class PathResolver {
public final class PathResolver {

/**
* Disallow instantiation of class.
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/anthonynsimon/url/PercentEncoder.java
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* <p>
* Supports UTF-8 escaping and unescaping.
*/
final class PercentEncoder {
public final class PercentEncoder {

/**
* Reserved characters, allowed in certain parts of the URL. Must be escaped in most cases.
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/anthonynsimon/url/URLParser.java
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
/**
* URLParser handles the parsing of a URL string into a URL object.
*/
interface URLParser {
public interface URLParser {
/**
* Returns a the URL with the new values after parsing the provided URL string.
*/
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/anthonynsimon/url/URLPart.java
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
/**
* URLPart is used to distinguish between the parts of the url when encoding/decoding.
*/
enum URLPart {
public enum URLPart {
CREDENTIALS,
HOST,
PATH,
Expand Down