scripting: simplify deprecated XTypeProvider.getImplementationId

Change-Id: If0d9a6f1c56dc560df078eb59313aaba393ee372
This commit is contained in:
Stephan Bergmann
2014-03-10 15:50:03 +01:00
parent a96b9043ff
commit 55461af2bd
2 changed files with 2 additions and 3 deletions

View File

@@ -300,7 +300,7 @@ public abstract class ScriptProvider
*/
public byte[] getImplementationId()
{
return this.getClass().getName().getBytes();
return new byte[0];
}
/**