From d5afea759be1f10f285e9631271d503d1d03407e Mon Sep 17 00:00:00 2001
From: Piotr Gawron <piotr.gawron@uni.lu>
Date: Fri, 26 Jul 2019 18:56:59 +0200
Subject: [PATCH] unused variables removed

---
 model/src/test/java/lcsb/mapviewer/model/map/CommentTest.java   | 1 -
 .../lcsb/mapviewer/model/map/layout/graphics/LayerOvalTest.java | 2 --
 .../lcsb/mapviewer/model/map/layout/graphics/LayerTextTest.java | 2 --
 3 files changed, 5 deletions(-)

diff --git a/model/src/test/java/lcsb/mapviewer/model/map/CommentTest.java b/model/src/test/java/lcsb/mapviewer/model/map/CommentTest.java
index 5e4044e69d..53a4c9f13f 100644
--- a/model/src/test/java/lcsb/mapviewer/model/map/CommentTest.java
+++ b/model/src/test/java/lcsb/mapviewer/model/map/CommentTest.java
@@ -39,7 +39,6 @@ public class CommentTest extends ModelTestFunctions {
     String name = "n";
     boolean pinned = true;
     String removeReason = "rr";
-    Model submodel = new ModelFullIndexed(null);
     Integer tableId = 5;
     Class<?> tableName = Object.class;
     User user = new User();
diff --git a/model/src/test/java/lcsb/mapviewer/model/map/layout/graphics/LayerOvalTest.java b/model/src/test/java/lcsb/mapviewer/model/map/layout/graphics/LayerOvalTest.java
index b9f6e09693..af5a6273e4 100644
--- a/model/src/test/java/lcsb/mapviewer/model/map/layout/graphics/LayerOvalTest.java
+++ b/model/src/test/java/lcsb/mapviewer/model/map/layout/graphics/LayerOvalTest.java
@@ -96,8 +96,6 @@ public class LayerOvalTest extends ModelTestFunctions {
     String heightParam = "72.2";
     Double height = 72.2;
 
-    String invalidNumberStr = "xxd";
-
     int id = 52;
     Color color = Color.BLACK;
 
diff --git a/model/src/test/java/lcsb/mapviewer/model/map/layout/graphics/LayerTextTest.java b/model/src/test/java/lcsb/mapviewer/model/map/layout/graphics/LayerTextTest.java
index dd50ebc9e8..cdee1cb0a6 100644
--- a/model/src/test/java/lcsb/mapviewer/model/map/layout/graphics/LayerTextTest.java
+++ b/model/src/test/java/lcsb/mapviewer/model/map/layout/graphics/LayerTextTest.java
@@ -118,8 +118,6 @@ public class LayerTextTest extends ModelTestFunctions {
     String fontSizeParam = "5.0";
     Double fontSize = 5.0;
 
-    String invalidNumberStr = "xxd";
-
     text.setY(yParam);
     assertEquals(y, text.getY(), Configuration.EPSILON);
     assertEquals(y, text.getY(), Configuration.EPSILON);
-- 
GitLab