From fd6752a057ffc65b2f9e32578127ccd2444c13a8 Mon Sep 17 00:00:00 2001 From: Shai Almog <67850168+shai-almog@users.noreply.github.com> Date: Fri, 14 Jun 2024 06:35:35 +0300 Subject: [PATCH] JavaDoc fixes Works around a weird CI misbehavior... --- CodenameOne/src/com/codename1/ui/Form.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CodenameOne/src/com/codename1/ui/Form.java b/CodenameOne/src/com/codename1/ui/Form.java index 36b6beb2d3..735f9200ed 100644 --- a/CodenameOne/src/com/codename1/ui/Form.java +++ b/CodenameOne/src/com/codename1/ui/Form.java @@ -60,7 +60,7 @@ * *

Form contains a title bar area which in newer application is replaced by the {@link Toolbar}. * Calling {@link #add(com.codename1.ui.Component)} or all similar methods on the {@code Form} - * delegates to the contenPane so calling {@code form.add(cmp)} is equivalent to + * delegates to the contentPane so calling {@code form.add(cmp)} is equivalent to * {@code form.getContentPane().add(cmp)}. Normally this shouldn't matter, however in some cases such as * animation we need to use the content pane directly e.g. {@code form.getContentPane().animateLayout(200)} * will work whereas {@code form.animateLayout(200)} will fail.

@@ -122,7 +122,7 @@ public class Form extends Container { */ private Transition transitionInAnimator; /** - * This member allows us to define a an animation that will draw the transition for + * This member allows us to define an animation that will draw the transition for * exiting this form. A transition is an animation that would occur when * switching from one form to another. */