Add missing Api annotations.
[SquirrelJME.git] / modules / jblend-api / src / main / java / com / jblend / util / Debug.java
blobed02ee1cd8b08e99ed60f858b6b45f275964eef8
1 // -*- Mode: Java; indent-tabs-mode: t; tab-width: 4 -*-
2 // ---------------------------------------------------------------------------
3 // SquirrelJME
4 // Copyright (C) Stephanie Gawroriski <xer@multiphasicapps.net>
5 // ---------------------------------------------------------------------------
6 // SquirrelJME is under the GNU General Public License v3+, or later.
7 // See license.mkd for licensing and copyright information.
8 // ---------------------------------------------------------------------------
10 package com.jblend.util;
12 import cc.squirreljme.runtime.cldc.annotation.Api;
13 import cc.squirreljme.runtime.cldc.debug.Debugging;
15 @Api
16 public final class Debug
18 @Api
19 public static final boolean WATCH_TIME = false;
21 @Api
22 public Debug()
24 throw Debugging.todo();
27 @Api
28 public static void trace(Object var0, String var1)
30 throw Debugging.todo();