Skip to content

Commit

Permalink
Fix: typo.
Browse files Browse the repository at this point in the history
  • Loading branch information
burningtnt committed Jan 17, 2024
1 parent cbe09b6 commit f1bd0ed
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public static ImageDescriptor getImageDescriptor() {
* @return The {@code ImageDescriptor} with WEBP signature.
* @throws IncompatibleClassChangeError If the adapter doesn't match the current JavaFX version.
*/
@JavaFXAdapter(state = JavaFXAdapter.State.INVLUDED_BEFORE, commit = "72deb62df704aa1baa355ad2e1428524cb978d6c")
@JavaFXAdapter(state = JavaFXAdapter.State.INCLUDED_BEFORE, commit = "72deb62df704aa1baa355ad2e1428524cb978d6c")
@BytecodeImpl({
"LABEL METHOD_HEAD",
"NEW Lcom/sun/javafx/iio/common/ImageDescriptor;",
Expand Down Expand Up @@ -78,7 +78,7 @@ private static ImageDescriptor constructImageDescriptor1(String[] extensions, Im
* @return The {@code ImageDescriptor} with WEBP signature.
* @throws IncompatibleClassChangeError If the adapter doesn't match the current JavaFX version.
*/
@JavaFXAdapter(state = JavaFXAdapter.State.INVLUDED_AFTER, commit = "f326e78ffdfcbbc9085bc50a38e0b4454b757157")
@JavaFXAdapter(state = JavaFXAdapter.State.INCLUDED_AFTER, commit = "f326e78ffdfcbbc9085bc50a38e0b4454b757157")
@BytecodeImpl({
"LABEL METHOD_HEAD",
"NEW Lcom/sun/javafx/iio/common/ImageDescriptor;",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public ImageLoader createImageLoader(InputStream input) {
* Same as {@code ImageStorage.addImageLoaderFactory(instance)}.
* @throws IncompatibleClassChangeError If the adapter doesn't match the current JavaFX version.
*/
@JavaFXAdapter(state = JavaFXAdapter.State.INVLUDED_BEFORE, commit = "171e484ca63bdfd50599417482eb704f71f10107")
@JavaFXAdapter(state = JavaFXAdapter.State.INCLUDED_BEFORE, commit = "171e484ca63bdfd50599417482eb704f71f10107")
@BytecodeImpl({
"LABEL METHOD_HEAD",
"GETSTATIC Lnet/burningtnt/webp/jfx/WEBPImageLoaderFactory;instance:Lnet/burningtnt/webp/jfx/WEBPImageLoaderFactory;",
Expand All @@ -67,7 +67,7 @@ private static void addImageLoaderFactory1() throws IncompatibleClassChangeError
* Same as {@code ImageStorage.getInstance().addImageLoaderFactory(instance)}.
* @throws IncompatibleClassChangeError If the adapter doesn't match the current JavaFX version.
*/
@JavaFXAdapter(state = JavaFXAdapter.State.INVLUDED_AFTER, commit = "f326e78ffdfcbbc9085bc50a38e0b4454b757157")
@JavaFXAdapter(state = JavaFXAdapter.State.INCLUDED_AFTER, commit = "f326e78ffdfcbbc9085bc50a38e0b4454b757157")
@BytecodeImpl({
"LABEL METHOD_HEAD",
"INVOKESTATIC Lcom/sun/javafx/iio/ImageStorage;getInstance()Lcom/sun/javafx/iio/ImageStorage;",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
@Retention(RetentionPolicy.SOURCE)
public @interface JavaFXAdapter {
enum State {
INVLUDED_BEFORE, INVLUDED_AFTER
INCLUDED_BEFORE, INCLUDED_AFTER
}

State state();
Expand Down

0 comments on commit f1bd0ed

Please sign in to comment.