From 454ddddd9995ad7c6f865729d160814f5a9f093a Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Fri, 12 Dec 2014 14:05:04 +0200 Subject: java: remove some unused fields and variables Change-Id: I5d6071096307adbe7df0178000346cf915afa3e7 Reviewed-on: https://gerrit.libreoffice.org/13477 Reviewed-by: Noel Grandin Tested-by: Noel Grandin --- odk/source/com/sun/star/lib/loader/InstallationFinder.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'odk/source') diff --git a/odk/source/com/sun/star/lib/loader/InstallationFinder.java b/odk/source/com/sun/star/lib/loader/InstallationFinder.java index eb1c78c412b2..05ba219bfe8b 100644 --- a/odk/source/com/sun/star/lib/loader/InstallationFinder.java +++ b/odk/source/com/sun/star/lib/loader/InstallationFinder.java @@ -424,7 +424,7 @@ final class InstallationFinder { lines.get( i ), "=" ); if ( tokens.countTokens() != 2 ) continue; - String key = tokens.nextToken(); + tokens.nextToken(); // key String url = tokens.nextToken(); path = getCanonicalPathFromFileURL( url ); if ( path != null ) -- cgit