Index: /issm/trunk/src/m/classes/model/model.m
===================================================================
--- /issm/trunk/src/m/classes/model/model.m	(revision 10183)
+++ /issm/trunk/src/m/classes/model/model.m	(revision 10184)
@@ -274,5 +274,4 @@
 			 if isfield(structmd,'diagnostic_ref'), md.diagnostic.referential=structmd.diagnostic_ref; end
 
-			 disp('-------------- file: model.m line: 276'); 
 			 %Field changes
 			 if (isfield(structmd,'type') & ischar(structmd.type)), 
@@ -283,5 +282,4 @@
 				 md.verbose=verbose;
 			 end
-			 disp('-------------- file: model.m line: 285'); 
 			 if isfield(structmd,'spcvelocity'), 
 				 md.diagnostic.spcvx=NaN*ones(md.mesh.numberofvertices,1);
Index: /issm/trunk/src/m/utils/Model/loadmodel.m
===================================================================
--- /issm/trunk/src/m/utils/Model/loadmodel.m	(revision 10183)
+++ /issm/trunk/src/m/utils/Model/loadmodel.m	(revision 10184)
@@ -20,6 +20,8 @@
 	%recover model on file and name it md
 	warning off MATLAB:unknownElementsNowStruc;
+	warning off MATLAB:load:classNotFound
 	struc=load(path,'-mat');
 	warning on MATLAB:unknownElementsNowStruc;
+	warning on MATLAB:load:classNotFound
 
 	name=char(fieldnames(struc));
@@ -28,9 +30,4 @@
 	end
 	md=struc.(name);
-	
-	%now, transform md into a new model
-	if ~strcmpi(class(md),'model') & ~strcmpi(class(md),'planet'),
-		md=structtomodel(model,md);
-	end
 	if nargout,
 		varargout{1}=md;
