Skip to content

Commit 48ddd80

Browse files
committedFeb 19, 2020
Merge
2 parents b5e65ec + 35a01ca commit 48ddd80

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed
 

‎modules/javafx.base/src/main/java/javafx/collections/FXCollections.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2010, 2019, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2010, 2020, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -576,7 +576,7 @@ public static <T> boolean replaceAll(ObservableList<T> list, T oldVal, T newVal)
576576
}
577577

578578
/**
579-
* Reverse the order in the list
579+
* Reverses the order in the list.
580580
* Fires only <b>one</b> change notification on the list.
581581
* @param list the list to be reversed
582582
* @see Collections#reverse(java.util.List)

‎modules/javafx.graphics/src/main/java/javafx/animation/Animation.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -417,7 +417,7 @@ public final ReadOnlyObjectProperty<Duration> cycleDurationProperty() {
417417

418418
/**
419419
* Read-only variable to indicate the total duration of this
420-
* {@code Animation}, including repeats. A {@code Animation} with a {@code cycleCount}
420+
* {@code Animation}, including repeats. An {@code Animation} with a {@code cycleCount}
421421
* of {@code Animation.INDEFINITE} will have a {@code totalDuration} of
422422
* {@code Duration.INDEFINITE}.
423423
*
@@ -961,7 +961,7 @@ public void playFromStart() {
961961

962962
/**
963963
* Stops the animation and resets the play head to its initial position. If
964-
* the animation is not currently running, this method has no effect.
964+
* the animation is already stopped, this method has no effect.
965965
* <p>
966966
* Note: <ul>
967967
* <li>{@code stop()} is an asynchronous call, the {@code Animation} may not stop

‎modules/javafx.graphics/src/main/java/javafx/application/Platform.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2010, 2019, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2010, 2020, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -175,7 +175,7 @@ public static void requestNextPulse() {
175175

176176
/**
177177
* Returns true if the calling thread is the JavaFX Application Thread.
178-
* Use this call the ensure that a given task is being executed
178+
* Use this call to ensure that a given task is being executed
179179
* (or not being executed) on the JavaFX Application Thread.
180180
*
181181
* @return true if running on the JavaFX Application Thread

‎modules/javafx.graphics/src/main/java/javafx/scene/Node.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2010, 2019, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2010, 2020, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -1566,7 +1566,7 @@ public final Node getClip() {
15661566
}
15671567

15681568
/**
1569-
* Specifies a {@code Node} to use to define the the clipping shape for this
1569+
* Specifies a {@code Node} to use to define the clipping shape for this
15701570
* Node. This clipping Node is not a child of this {@code Node} in the scene
15711571
* graph sense. Rather, it is used to define the clip for this {@code Node}.
15721572
* <p>

‎modules/javafx.graphics/src/main/native-glass/win/OleUtils.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2011, 2014, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2011, 2020, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -227,7 +227,7 @@ inline HRESULT checkJavaException(JNIEnv *env)
227227
s_jcidThrowable_getMessage
228228
));
229229
if(jsMessage){
230-
STRACE1(_T("Java Messsge:%s"), (LPCWSTR)JString(env, jsMessage) );
230+
STRACE1(_T("Java Message:%s"), (LPCWSTR)JString(env, jsMessage) );
231231
}
232232
env->ExceptionDescribe();
233233
}

0 commit comments

Comments
 (0)
Please sign in to comment.