Skip to content
This repository has been archived by the owner on May 17, 2021. It is now read-only.

Make maxCube tests compatible with Java 1.6 #3651

Merged
merged 1 commit into from
Dec 31, 2015
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ public class L_MessageTest {

private static final String rawData = "L:BgVPngkSEAsLhBkJEhkLJQDAAAsLhwwJEhkRJwDKAAYO8ZIJEhAGBU+kCRIQCwxuRPEaGQMmAMcACwxuQwkSGQgnAM8ACwQd5t0SGQ0oAMsA";

private final Map<String, Device> testDevices = new HashMap<>();
private final Map<String, Device> testDevices = new HashMap<String, Device>();

private L_Message message;
private final List<Configuration> configurations = new ArrayList<>();
private final List<Configuration> configurations = new ArrayList<Configuration>();

@Before
public void setUp() {
Expand Down