code: remove `protected` from top-level methods (now in sys)
[nit.git] / contrib / pep8analysis / src / backbone.nit
index a7e1185..251f920 100644 (file)
@@ -5,8 +5,6 @@ import parser
 class AnalysisManager
        super Noter
        var opts = new OptionContext
-
-       init do end
 end
 
 abstract class Noter
@@ -73,7 +71,7 @@ class Warn
        redef fun prefix do return "Warning: "
 end
 
-class Error
+class P8Error
        super Note
        init (line: Location, msg: String) do super
        init range(from, to: Location, msg: String) do super
@@ -100,4 +98,4 @@ redef class Location
        end
 end
 
-protected fun manager: AnalysisManager do return once new AnalysisManager
+fun manager: AnalysisManager do return once new AnalysisManager