Author: pderop
Date: Wed Feb 24 12:42:02 2016
New Revision: 1732132
URL: http://svn.apache.org/viewvc?rev=1732132&view=rev
Log:
Fixed typo.
Modified:
felix/site/trunk/content/documentation/subprojects/apache-felix-dependency-manager/guides/dm-lambda.mdtext
Modified:
felix/site/trunk/content/documentation/subprojects/apache-felix-dependency-manager/guides/dm-lambda.mdtext
URL:
http://svn.apache.org/viewvc/felix/site/trunk/content/documentation/subprojects/apache-felix-dependency-manager/guides/dm-lambda.mdtext?rev=1732132&r1=1732131&r2=1732132&view=diff
==============================================================================
---
felix/site/trunk/content/documentation/subprojects/apache-felix-dependency-manager/guides/dm-lambda.mdtext
(original)
+++
felix/site/trunk/content/documentation/subprojects/apache-felix-dependency-manager/guides/dm-lambda.mdtext
Wed Feb 24 12:42:02 2016
@@ -639,7 +639,7 @@ Example that defines a factory configura
public class Activator extends DependencyManagerActivator {
public void init(BundleContext ctx, DependencyManager dm) throws
Exception {
factoryPidAdapter(adapter -> adapter
-
.impl(DictionaryImpl.class).factoryPid("foo.bar").propagate().update(DictionaryConfiguration.class,
ServiceImpl::updated)
+
.impl(DictionaryImpl.class).propagate().update(DictionaryConfiguration.class,
ServiceImpl::updated)
.withSvc(LogService.class, log -> log.optional()));
}
}