Skip to content

Commit

Permalink
Fix API version incompatibility warning
Browse files Browse the repository at this point in the history
  • Loading branch information
lincolnthree committed Jan 29, 2015
1 parent 7022a86 commit 282a292
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ private Set<AddonId> getAllEnabledAddonsInAllRepositories(Collection<AddonReposi

List<AddonId> incompatible = new ArrayList<>(enabled);
incompatible.removeAll(enabledCompatible);
for (AddonId addon : enabledCompatible)
for (AddonId addon : incompatible)
{
logger.warning("Addon [" + addon + "] with API version [" + addon.getApiVersion()
+ "] is incompatible with the current Furnace runtime version ["
Expand Down

0 comments on commit 282a292

Please sign in to comment.