Fixed most of the currently discovered typos.
This commit is contained in:
@@ -5,7 +5,7 @@
|
||||
* MobilityModel is an abstract class which is used for calculating the
|
||||
* location of each mobile devices with respect to the time. For those who
|
||||
* wants to add a custom Mobility Model to EdgeCloudSim should extend
|
||||
* this class and provide a concreate instance via ScenarioFactory
|
||||
* this class and provide a concrete instance via ScenarioFactory
|
||||
*
|
||||
* Licence: GPL - http://www.gnu.org/copyleft/gpl.html
|
||||
* Copyright (c) 2017, Bogazici University, Istanbul, Turkey
|
||||
|
||||
@@ -98,7 +98,7 @@ public class NomadicMobility extends MobilityModel {
|
||||
}
|
||||
}
|
||||
if(!placeFound){
|
||||
SimLogger.printLine("impossible is occured! location cannot be assigned to the device!");
|
||||
SimLogger.printLine("impossible is occurred! location cannot be assigned to the device!");
|
||||
System.exit(0);
|
||||
}
|
||||
}
|
||||
@@ -113,7 +113,7 @@ public class NomadicMobility extends MobilityModel {
|
||||
Entry<Double, Location> e = treeMap.floorEntry(time);
|
||||
|
||||
if(e == null){
|
||||
SimLogger.printLine("impossible is occured! no location is found for the device '" + deviceId + "' at " + time);
|
||||
SimLogger.printLine("impossible is occurred! no location is found for the device '" + deviceId + "' at " + time);
|
||||
System.exit(0);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user