We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c1021bb commit 128ca51Copy full SHA for 128ca51
approvaltests-util/src/main/java/com/spun/util/SystemUtils.java
@@ -7,7 +7,16 @@
7
8
public class SystemUtils
9
{
10
+ /**
11
+ * @deprecated Use {@link #isWindowsEnvironment} instead.
12
+ * For example inline your usage of this method.
13
+ */
14
+ @Deprecated
15
public static boolean isWindowsEnviroment()
16
+ {
17
+ return isWindowsEnvironment();
18
+ }
19
+ public static boolean isWindowsEnvironment()
20
21
return "\\".equals(File.separator);
22
}
0 commit comments