()
| 57 | |
| 58 | |
| 59 | @Override |
| 60 | public final String getFactoryClassName() { |
| 61 | String factory = super.getFactoryClassName(); |
| 62 | if (factory != null) { |
| 63 | return factory; |
| 64 | } else { |
| 65 | String objectFactories = System.getProperty(Context.OBJECT_FACTORIES); |
| 66 | if (objectFactories != null) { |
| 67 | return null; |
| 68 | } else { |
| 69 | return getDefaultFactoryClassName(); |
| 70 | } |
| 71 | } |
| 72 | } |
| 73 | |
| 74 | |
| 75 | /** |
no test coverage detected