diff --git a/examples/view-locals/index.js b/examples/view-locals/index.js index 7a68ce17b1..7658e83fa3 100644 --- a/examples/view-locals/index.js +++ b/examples/view-locals/index.js @@ -101,11 +101,6 @@ app.get('/middleware-locals', count2, users2, function(req, res, next){ res.render('user', { title: 'Users' }); }); - -app.get('/locals', function(req, res){ - res.render('user', { title: 'Users' }); -}); - // keep in mind that middleware may be placed anywhere // and in various combinations, so if you have locals // that you wish to make available to all subsequent