RetailMeNot / TestRailSDK

TestRail integration with Java WebDriver implementation.
MIT License
25 stars 27 forks source link

Change to java 1.6 #5

Closed RamonBoza closed 10 years ago

RamonBoza commented 10 years ago

Hi,

can you move the code from java 1.7 to java 1.6, the only line that has to be changed is in TestRailService.java(397)

from Map<String, String> headers = new HashMap<>();

to Map<String, String> headers = new HashMap<String, String>();

mmerrell commented 10 years ago

I made the change and pushed the code (along with the other pull requests). A new version of 0.9-SNAPSHOT has been deployed to Maven Central and should be available now

mmerrell commented 10 years ago

@RamonBoza we released 0.9 yesterday, which rolled the language support back to Java 1.6. Can you check it out and let me know?