From 8f1ae9ba0bb6a6c9209957178f404014493aaf1d Mon Sep 17 00:00:00 2001 From: Matthijs Kooijman Date: Mon, 7 Dec 2015 12:59:11 +0100 Subject: [PATCH] Remove SketchCode::getLineCount() It was not used anymore, and removing it makes subsequent refactoring easier. --- arduino-core/src/processing/app/SketchCode.java | 5 ----- 1 file changed, 5 deletions(-) diff --git a/arduino-core/src/processing/app/SketchCode.java b/arduino-core/src/processing/app/SketchCode.java index db0f95af0..558234d15 100644 --- a/arduino-core/src/processing/app/SketchCode.java +++ b/arduino-core/src/processing/app/SketchCode.java @@ -168,11 +168,6 @@ public class SketchCode { } - public int getLineCount() { - return BaseNoGui.countLines(program); - } - - public void setModified(boolean modified) { this.modified = modified; }