Skip to content

Commit 308d120

Browse files
committed
refactor classes into different packages
1 parent 07c649d commit 308d120

125 files changed

Lines changed: 5174 additions & 4418 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

src/main/java/com/auth0/Asserts.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
import okhttp3.HttpUrl;
44

5-
abstract class Asserts {
5+
public abstract class Asserts {
66
public static void assertNotNull(Object value, String name) throws IllegalArgumentException {
77
if (value == null) {
88
throw new IllegalArgumentException(String.format("'%s' cannot be null!", name));

0 commit comments

Comments
 (0)