blob: 5d0cd3c661b0c396e0eab2d130eefe807b968a17 [file] [log] [blame]
package protectedregions;
public class TemperatureController {
public int execute(int temperature, int targetTemperature) {
// protected region execute on begin
return temperature - targetTemperature;
// protected region execute end
}
}