mirror of
https://github.com/hibernate/hibernate-orm
synced 2025-02-07 11:48:18 +00:00
7ff76bf6eb
Signed-off-by: Jan Schatteman <jschatte@redhat.com>
13 lines
345 B
Plaintext
13 lines
345 B
Plaintext
// Checkerframework stubs for the jboss.logging module
|
|
|
|
package org.jboss.logging;
|
|
|
|
import org.checkerframework.checker.nullness.qual.Nullable;
|
|
|
|
public interface BasicLogger {
|
|
void tracef(String format, @Nullable Object param1, @Nullable Object param2);
|
|
}
|
|
|
|
public interface Logger {
|
|
void tracev(String format, @Nullable Object param1);
|
|
} |