Merge pull request #87 from j0ach1mmall3/master

Remove unneccessary final
This commit is contained in:
Trent Hensler 2016-10-27 14:05:24 -07:00 committed by GitHub
commit eb609105ea

View file

@ -14,7 +14,7 @@ public class Potato implements Tuber {
private final List<Condiment> condiments = new ArrayList<>();
public static void main(String[] args) {
final Potato potato = new Potato();
Potato potato = new Potato();
try {
potato.prepare();
System.out.println("Of course potato is prepared and delicious.");
@ -77,7 +77,7 @@ public class Potato implements Tuber {
*/
public boolean isPutIntoOven() throws OvenException {
try {
final URL url = new URL("https://www.google.com/search?q=potato");
URL url = new URL("https://www.google.com/search?q=potato");
HttpURLConnection connection = (HttpURLConnection) url.openConnection();
connection.setRequestMethod("GET");
connection.addRequestProperty("User-Agent", "Potato");