Code formatting change for upcoming annotations.
Putting /** @hide */ on the same line results in the automated annotation addition putting the annotation the previous line, which then results in the @hide javadoc annotation being ignored (since it's now no longer strictly before the method declaration). Bug: 110868826 Test: m Change-Id: I1b5c290a17ead46effd2f2ff3f4b33884efbc116
This commit is contained in:
@@ -370,8 +370,8 @@ public final class Log {
|
||||
/** @hide */ public static final int LOG_ID_SYSTEM = 3;
|
||||
/** @hide */ public static final int LOG_ID_CRASH = 4;
|
||||
|
||||
/** @hide */ public static native int println_native(int bufID,
|
||||
int priority, String tag, String msg);
|
||||
/** @hide */
|
||||
public static native int println_native(int bufID, int priority, String tag, String msg);
|
||||
|
||||
/**
|
||||
* Return the maximum payload the log daemon accepts without truncation.
|
||||
|
||||
Reference in New Issue
Block a user