Fix issues in Javadoc

This commit is contained in:
Sam Brannen
2020-10-27 11:05:31 +01:00
parent 5170f3f594
commit d1e6883d5d
5 changed files with 20 additions and 13 deletions

View File

@@ -77,7 +77,6 @@ public abstract class KotlinDetector {
/**
* Return {@code true} if the method is a suspending function.
* @author Sebastien Deleuze
* @since 5.3
*/
public static boolean isSuspendingFunction(Method method) {

View File

@@ -24,10 +24,13 @@ import org.springframework.core.metrics.StartupStep;
/**
* {@link ApplicationStartup} implementation for the Java Flight Recorder.
* <p>This variant records {@link StartupStep} as Flight Recorder events; because such events
* only support base types, the {@link StartupStep.Tags} are serialized as a single String attribute.
* <p>Once this is configured on the application context, you can record data by launching the application
* with recording enabled: {@code java -XX:StartFlightRecording:filename=recording.jfr,duration=10s -jar app.jar}.
* <p>This variant records {@link StartupStep} as Flight Recorder events. Because
* such events only support base types, the
* {@link org.springframework.core.metrics.StartupStep.Tags} are serialized as a
* single String attribute.
* <p>Once this is configured on the application context, you can record data by
* launching the application with recording enabled:
* {@code java -XX:StartFlightRecording:filename=recording.jfr,duration=10s -jar app.jar}.
*
* @author Brian Clozel
* @since 5.3