Kaydet (Commit) 55461af2 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

scripting: simplify deprecated XTypeProvider.getImplementationId

Change-Id: If0d9a6f1c56dc560df078eb59313aaba393ee372
üst a96b9043
......@@ -300,7 +300,7 @@ public abstract class ScriptProvider
*/
public byte[] getImplementationId()
{
return this.getClass().getName().getBytes();
return new byte[0];
}
/**
......
......@@ -526,8 +526,7 @@ public:
virtual Sequence< sal_Int8 > SAL_CALL getImplementationId()
throw ( com::sun::star::uno::RuntimeException, std::exception )
{
return m_xWrappedTypeProv->getImplementationId();
return css::uno::Sequence<sal_Int8>();
}
};
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment