(string argument)
| 145 | class DebugViewPlugin |
| 146 | { |
| 147 | public static int IsIdentified(string argument) |
| 148 | { |
| 149 | if (string.IsNullOrEmpty(argument)) return -1; |
| 150 | if (argument.ToLower().StartsWith("http")) return 1; |
| 151 | return -1; |
| 152 | } |
| 153 | |
| 154 | public static void ProcessCommandline(string[] args) |
| 155 | { |
nothing calls this directly
no outgoing calls
no test coverage detected