MCPcopy Index your code
hub / github.com/Zoxcore/trifa_material / Unix

Class Unix

src/main/java/com/platform/Unix.java:3–13  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1package com.platform;
2
3public 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}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected