Kaydet (Commit) 5f6b1976 authored tarafından Caolán McNamara's avatar Caolán McNamara

mediawiki options went missing

regression from 34bcf9b4

Change-Id: Ibd0645bd218c81da110b3704a530e3849b761fb4
Date:   Wed Aug 13 10:08:31 2014 +0200
    java: remove dead methods
    found by UCDetector
üst 9d4ed573
...@@ -68,7 +68,18 @@ public final class WikiEditorImpl extends WeakBase ...@@ -68,7 +68,18 @@ public final class WikiEditorImpl extends WeakBase
m_aSettings = Settings.getSettings( m_xContext ); m_aSettings = Settings.getSettings( m_xContext );
} }
public static XSingleComponentFactory __getComponentFactory( String sImplementationName )
{
XSingleComponentFactory xFactory = null;
if ( sImplementationName.equals( m_implementationName ) )
xFactory = Factory.createComponentFactory( WikiEditorImpl.class, m_serviceNames );
else if ( sImplementationName.equals( WikiOptionsEventHandlerImpl.m_sImplementationName ) )
xFactory = Factory.createComponentFactory( WikiOptionsEventHandlerImpl.class,
WikiOptionsEventHandlerImpl.m_pServiceNames );
return xFactory;
}
// com.sun.star.lang.XServiceInfo: // com.sun.star.lang.XServiceInfo:
public String getImplementationName() public String getImplementationName()
......
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