correction execute
This commit is contained in:
@@ -44,7 +44,6 @@ public class CapteurImpl implements Capteur {
|
|||||||
for (ObserverDeCapteurAsync canal : observers) {
|
for (ObserverDeCapteurAsync canal : observers) {
|
||||||
canal.update(this);
|
canal.update(this);
|
||||||
}
|
}
|
||||||
this.diffusion.execture();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
//AO2 - Concrete Servant
|
//AO2 - Concrete Servant
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ public class DiffusionAtomique implements AlgoDiffusion {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void execture() {
|
public void execute() {
|
||||||
// TODO Auto-generated method stub
|
// TODO Auto-generated method stub
|
||||||
throw new UnsupportedOperationException("Unimplemented method 'execture'");
|
throw new UnsupportedOperationException("Unimplemented method 'execture'");
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -3,5 +3,5 @@ package interfaces;
|
|||||||
public interface AlgoDiffusion {
|
public interface AlgoDiffusion {
|
||||||
public void configure();
|
public void configure();
|
||||||
|
|
||||||
public void execture();
|
public void execute();
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user