diff --git a/examples/storingLevelOrientedData.m b/examples/storingLevelOrientedData.m
index 80feb5e806e64dd3d7d34cda76fa98de96233676..447203f12dc161c7a543f44bbd36dde0d59d8a00 100644
--- a/examples/storingLevelOrientedData.m
+++ b/examples/storingLevelOrientedData.m
@@ -19,10 +19,10 @@ function leveldata = storingLevelOrientedData(doPlots)
     %% initialize output data structure
     pathToStorage = 'results';
     leveldata = LevelData(pathToStorage);
-    leveldata.problem = 'Poisson';
-    leveldata.domain = 'Lshape';
-    leveldata.method = 'S1';
-    leveldata.identifier = 'example';
+    leveldata.metaData('problem') = 'Poisson';
+    leveldata.metaData('domain') = 'Lshape';
+    leveldata.metaData('method') = 'S1';
+    leveldata.metaData('identifier') = 'example';
 
     %% problem data
     blf = BilinearForm();
@@ -112,8 +112,8 @@ function leveldata = storingLevelOrientedData(doPlots)
         leveldata.plotAbsolute('ndof');
     
         % plot of all triangulations
-        figure();
-        leveldata.plotTriangulation();
+        % figure();
+        % leveldata.plotTriangulation();
     
         %% export error plot to file
         leveldata.plotToFile('ndof');