diff --git a/Framework/Algorithms/src/TOFSANSResolution.cpp b/Framework/Algorithms/src/TOFSANSResolution.cpp
index 0c1aedfee9fafebd5e58f91e8a70641f7db192e7..311d57d7740b038e125073b402dfd21235430b1c 100644
--- a/Framework/Algorithms/src/TOFSANSResolution.cpp
+++ b/Framework/Algorithms/src/TOFSANSResolution.cpp
@@ -72,18 +72,18 @@ double TOFSANSResolution::getTOFResolution(double wl) {
  * Return the effective pixel size in X, in meters
  */
 double TOFSANSResolution::getEffectiveXPixelSize() {
-    double pixel_size_x = getProperty("PixelSizeX");
-    return pixel_size_x / 1000.0;
+  double pixel_size_x = getProperty("PixelSizeX");
+  return pixel_size_x / 1000.0;
 }
 
 /*
  * Return the effective pixel size in Y, in meters
  */
 double TOFSANSResolution::getEffectiveYPixelSize() {
-    double pixel_size_y = getProperty("PixelSizeY");
-    return pixel_size_y / 1000.0;
+  double pixel_size_y = getProperty("PixelSizeY");
+  return pixel_size_y / 1000.0;
 }
-  
+
 void TOFSANSResolution::exec() {
   MatrixWorkspace_sptr iqWS = getProperty("InputWorkspace");
   MatrixWorkspace_sptr reducedWS = getProperty("ReducedWorkspace");