diff --git a/core/src/cz/nic/tablexia/util/ScaleUtil.java b/core/src/cz/nic/tablexia/util/ScaleUtil.java
index b4d46cff8c449684c8f92e77c30cfe8b36fe4a8d..4d2d3aef3afd8118288c424642e8aa06796564ba 100644
--- a/core/src/cz/nic/tablexia/util/ScaleUtil.java
+++ b/core/src/cz/nic/tablexia/util/ScaleUtil.java
@@ -169,20 +169,4 @@ public class ScaleUtil {
         actor.setPosition(x, y);
         return actor;
     }
-
-    public static float getViewportPositionX(Stage stage) {
-        return 0;
-    }
-
-    public static float getViewportPositionY(Stage stage) {
-        return stage.getCamera().position.y - stage.getHeight() / 2;
-    }
-
-    public static float getViewportWidth() {
-        return Gdx.graphics.getWidth(); // TODO this is wrong
-    }
-
-    public static float getViewportHeight() {
-        return Gdx.graphics.getHeight();// TODO this is wrong
-    }
 }