Skip to content
Snippets Groups Projects
Commit d724f1d1 authored by MELERIX's avatar MELERIX
Browse files

BETA: Fixed two warnings.

parent ff13ff71
No related branches found
No related tags found
No related merge requests found
......@@ -103,8 +103,8 @@ public class ChainHeal implements ISkillHandler
private L2Character[] getTargetsToHeal(L2Character[] targets)
{
Map<L2Character, Double> tmpTargets = new FastMap<L2Character, Double>();
List<L2Character> sortedListToReturn = new FastList<L2Character>();
Map<L2Character, Double> tmpTargets = new FastMap<>();
List<L2Character> sortedListToReturn = new FastList<>();
int curTargets = 0;
for (L2Character target : targets)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment