Skip to content

Commit 36627b5

Browse files
committed
Fixed spelling mistake.
1 parent 9705c0e commit 36627b5

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

com.github.groovyosgi.testing.pizzaservice.impl/META-INF/MANIFEST.MF

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@ Import-Package: com.github.groovyosgi.testing.paymentservice,
1313
org.osgi.framework,
1414
org.osgi.service.component;version="1.2.0",
1515
org.osgi.service.event
16-
Service-Component: OSGI-INF/PizzaSerive.xml,
16+
Service-Component: OSGI-INF/PizzaService.xml,
1717
OSGI-INF/PizzaBaker.xml,
1818
OSGI-INF/PizzaDeliveryMan.xml

com.github.groovyosgi.testing.pizzaservice.impl/OSGI-INF/PizzaSerive.xml com.github.groovyosgi.testing.pizzaservice.impl/OSGI-INF/PizzaService.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.1.0"
3-
name="com.github.groovyosgi.testing.pizzaservice.impl" immediate="true">
3+
name="com.github.groovyosgi.testing.pizzaservice.impl.PizzaServiceImpl" immediate="true">
44
<implementation
5-
class="com.github.groovyosgi.testing.pizzaservice.impl.PizzaSeriveImpl" />
5+
class="com.github.groovyosgi.testing.pizzaservice.impl.PizzaServiceImpl" />
66
<reference bind="setCreditCardPaymentService" cardinality="1..1"
77
interface="com.github.groovyosgi.testing.paymentservice.CreditCardPaymentService"
88
name="CreditCardPaymentService" policy="static" unbind="unsetCreditCardPaymentService" />
+2-2
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@
1212
import com.github.groovyosgi.testing.pizzaservice.model.Order;
1313
import com.github.groovyosgi.testing.pizzaservice.model.Pizza;
1414

15-
public class PizzaSeriveImpl implements PizzaService {
15+
public class PizzaServiceImpl implements PizzaService {
1616

17-
private static final String TAG = PizzaSeriveImpl.class.getName();
17+
private static final String TAG = PizzaServiceImpl.class.getName();
1818
private CreditCardPaymentService creditCardPaymentService;
1919
private EventAdmin eventAdmin;
2020
private PizzaBaker pizzaBaker;

0 commit comments

Comments
 (0)