Setup RingtoneService

This commit is contained in:
Phillip Hsu
2016-05-28 18:44:51 -07:00
parent 7d4b0c0dff
commit 37e7d3dd3b
25 changed files with 763 additions and 45 deletions
@@ -0,0 +1,14 @@
package com.philliphsu.clock2.util;
/**
* Created by Phillip Hsu on 5/28/2016.
*/
public final class Preconditions {
private Preconditions() {}
public static <T> T checkNotNull(T obj) {
if (null == obj)
throw new NullPointerException();
return obj;
}
}