diff --git a/Applications/FileIO/GMSInterface.cpp b/Applications/FileIO/GMSInterface.cpp
index 68e9520b439ccd28896c5bfdd2952641f4fffcd2..925e851c385110500d9e8dd1577f7f5d341fb499 100644
--- a/Applications/FileIO/GMSInterface.cpp
+++ b/Applications/FileIO/GMSInterface.cpp
@@ -75,7 +75,8 @@ int GMSInterface::readBoreholesFromGMS(std::vector<GeoLib::Point*>* boreholes,
                 // later on!
                 if (pnt[2] != depth)
                 {
-                    newBorehole->addSoilLayer(pnt[0], pnt[1], pnt[2], sName);
+                    newBorehole->addSoilLayer(
+                        pnt[0], pnt[1], pnt[2], sName);
                     sName = (*(++it));
                     depth = pnt[2];
                 }
diff --git a/GeoLib/Station.cpp b/GeoLib/Station.cpp
index b43f4bf7eea3894c9cbf542ca641fefb95caf466..58180a03f2a6e52c9938a331ca4c111d4288dbdc 100644
--- a/GeoLib/Station.cpp
+++ b/GeoLib/Station.cpp
@@ -70,14 +70,10 @@ Station* Station::createStation(const std::string & line)
     return station;
 }
 
-Station* Station::createStation(const std::string &name, double x, double y, double z)
+Station* Station::createStation(const std::string& name, double x, double y,
+                                double z)
 {
-    Station* station = new Station();
-    station->_name = name;
-    (*station)[0] = x;
-    (*station)[1] = y;
-    (*station)[2] = z;
-    return station;
+    return new Station(x, y, z, name);
 }
 
 bool isStation(GeoLib::Point const* pnt)