From 43cc8ad33e815522e2b23ac87a4a9c4526cd85c9 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Fri, 19 Dec 2014 16:03:41 +0200 Subject: java: remove dead code found by UCDetector Change-Id: I6b0f49529379072da566e927b86815f173e7a90b --- .../pentaho/parser/AttributeSpecification.java | 21 --------------------- 1 file changed, 21 deletions(-) (limited to 'reportbuilder/java/org/libreoffice/report/pentaho/parser/AttributeSpecification.java') diff --git a/reportbuilder/java/org/libreoffice/report/pentaho/parser/AttributeSpecification.java b/reportbuilder/java/org/libreoffice/report/pentaho/parser/AttributeSpecification.java index 937f7a40591c..7e60f65998ec 100644 --- a/reportbuilder/java/org/libreoffice/report/pentaho/parser/AttributeSpecification.java +++ b/reportbuilder/java/org/libreoffice/report/pentaho/parser/AttributeSpecification.java @@ -20,29 +20,8 @@ package org.libreoffice.report.pentaho.parser; public final class AttributeSpecification { - private final String namespaceUrl; - private final String attributName; - private final String mapperImplementation; - public AttributeSpecification(String namespaceUrl, String attributName, String mapperImplementation) { - this.namespaceUrl = namespaceUrl; - this.attributName = attributName; - this.mapperImplementation = mapperImplementation; } - public String getAttributName() - { - return attributName; - } - - public String getMapperImplementation() - { - return mapperImplementation; - } - - public String getNamespaceUrl() - { - return namespaceUrl; - } } -- cgit