From: Dave Rolsky Date: Wed, 29 Jun 2011 19:24:05 +0000 (-0400) Subject: For fuck's sake, really remove the right slides X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=d961c52547788f5f2023c465b8e7f8e8f8d0d249;p=gitmo%2Fmoose-presentations.git For fuck's sake, really remove the right slides --- diff --git a/moose-class/slides/index.html b/moose-class/slides/index.html index 3c0ba31..cf53cbb 100644 --- a/moose-class/slides/index.html +++ b/moose-class/slides/index.html @@ -1487,22 +1487,6 @@ Integer->does('Comparable'); # also true!
-

Name Conflicts Between Roles

- -
package HasSubProcess;
-use Moose::Role;
-
-sub execute { ... }
-
-package Killer;
-use Moose::Role;
-
-with 'HasSubProcess';
-
-sub execute { ... }
-
- -

Roles as Interfaces