java: remove dead methods

found by UCDetector

Change-Id: I219caa8e680dba5a395541a778df6144841c4dde
This commit is contained in:
Noel Grandin
2014-08-13 10:08:31 +02:00
parent 347926e8e5
commit 34bcf9b498
230 changed files with 405 additions and 8206 deletions

View File

@@ -163,30 +163,9 @@ public class ExampleAddIn
// XExampleAddIn
public int getIncremented( int nValue )
{
return nValue + 1;
}
public com.sun.star.sheet.XVolatileResult getCounter(String aName)
{
if ( aResults == null )
{
// create the table of results, and start a thread to increment
// all counters
aResults = new java.util.HashMap<String, ExampleAddInResult>();
ExampleAddInThread aThread = new ExampleAddInThread( aResults );
aThread.start();
}
ExampleAddInResult aResult = aResults.get(aName);
if ( aResult == null )
{
aResult = new ExampleAddInResult(aName);
aResults.put( aName, aResult );
}
return aResult;
}
// XAddIn