Jump to content

Recommended Posts

Posted

So, before anyone says anything, yes, I followed this tutorial:

However, when I set up the tabSorter, looking like this:

tabSorter = Ordering.explicit(order).onResultOf(new Function<ItemStack, Item>() {

I get this error:

The method onResultOf(Function<F,? extends Item>) in the type Ordering<Item> is not applicable for the arguments (new Function<ItemStack,Item>(){})

And I can't figure out why.  I followed the tutorial exactly.  I'm in Eclipse, and I think I have Java 1.6 as my compatibility and runtime environment, but I tried 1.7 and 1.8 and there wasn't a difference.  Any ideas?

Posted

The Ordering class is from the Guava library, which uses its own functional interfaces (that predate Java 8). Make sure you've imported com.google.common.base.Function (Guava) rather than java.util.function.Function (Java 8).

Please don't PM me to ask for help. Asking your question in a public thread preserves it for people who are having the same problem in the future.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.