| 1 | package com.platform; |
| 2 | |
| 3 | public class Unix implements OperatingSystem { |
| 4 | @Override |
| 5 | public boolean isSupported(String feature) { |
| 6 | switch (feature) { |
| 7 | case "fade": |
| 8 | return false; |
| 9 | default: |
| 10 | return true; |
| 11 | } |
| 12 | } |
| 13 | } |
nothing calls this directly
no outgoing calls
no test coverage detected