2
0
Bläddra i källkod

Remove debug code

Laurent Laffont 12 år sedan
förälder
incheckning
5707088080

+ 0 - 1
examples/presentation/js/Presentation.deploy.js

@@ -1487,7 +1487,6 @@ smalltalk.method({
 selector: 'selectSlideAt:',
 fn: function (anInteger){
 var self=this;
-smalltalk.send((smalltalk.Transcript || Transcript), "_show_", [anInteger]);
 smalltalk.send(smalltalk.send(self, "_currentPresentation", []), "_moveAt_", [anInteger]);
 return self;}
 }),

+ 3 - 4
examples/presentation/js/Presentation.js

@@ -2058,13 +2058,12 @@ selector: unescape('selectSlideAt%3A'),
 category: 'callbacks',
 fn: function (anInteger){
 var self=this;
-smalltalk.send((smalltalk.Transcript || Transcript), "_show_", [anInteger]);
 smalltalk.send(smalltalk.send(self, "_currentPresentation", []), "_moveAt_", [anInteger]);
 return self;},
 args: ["anInteger"],
-source: unescape('selectSlideAt%3A%20anInteger%0A%09Transcript%20show%3A%20anInteger.%0A%09self%20currentPresentation%20moveAt%3A%20anInteger'),
-messageSends: ["show:", "moveAt:", "currentPresentation"],
-referencedClasses: [smalltalk.Transcript]
+source: unescape('selectSlideAt%3A%20anInteger%0A%09self%20currentPresentation%20moveAt%3A%20anInteger'),
+messageSends: ["moveAt:", "currentPresentation"],
+referencedClasses: []
 }),
 smalltalk.PresentationNavigator);
 

+ 0 - 1
examples/presentation/st/Presentation.st

@@ -1171,7 +1171,6 @@ reload
 !
 
 selectSlideAt: anInteger
-	Transcript show: anInteger.
 	self currentPresentation moveAt: anInteger
 ! !