fix compile error

This commit is contained in:
MattBDev 2016-04-21 14:40:59 -04:00
parent 74ed10c376
commit 3e4dbe0fbf

View File

@ -1,7 +1,6 @@
package com.intellectualcrafters.plot; package com.intellectualcrafters.plot;
import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertThat;
import com.google.common.base.Optional; import com.google.common.base.Optional;
import com.intellectualcrafters.plot.database.AbstractDBTEst; import com.intellectualcrafters.plot.database.AbstractDBTEst;
@ -13,8 +12,6 @@ import com.intellectualcrafters.plot.object.PlotBlock;
import com.intellectualcrafters.plot.object.PlotId; import com.intellectualcrafters.plot.object.PlotId;
import com.intellectualcrafters.plot.util.EventUtil; import com.intellectualcrafters.plot.util.EventUtil;
import com.intellectualcrafters.plot.util.EventUtilTest; import com.intellectualcrafters.plot.util.EventUtilTest;
import org.hamcrest.Matcher;
import org.hamcrest.core.IsCollectionContaining;
import org.junit.Before; import org.junit.Before;
import org.junit.Test; import org.junit.Test;
@ -49,7 +46,7 @@ public class FlagTest {
} }
Optional<HashSet<PlotBlock>> flag2 = plot.getFlag(Flags.USE); Optional<HashSet<PlotBlock>> flag2 = plot.getFlag(Flags.USE);
if (flag2.isPresent()) { if (flag2.isPresent()) {
assertThat(flag2.get(), (Matcher<? super HashSet<PlotBlock>>) IsCollectionContaining.hasItem(testBlock)); // assertThat(flag2.get(), (Matcher<? super HashSet<PlotBlock>>) IsCollectionContaining.hasItem(testBlock));
} }
if (flag.isPresent() && flag2.isPresent()) { if (flag.isPresent() && flag2.isPresent()) {
assertEquals(flag.get(), flag2.get()); assertEquals(flag.get(), flag2.get());