8190501: (fs) Incorrect error message parameter in java/nio/file/Files/probeContentType/Basic.java

Replace expectedTypes with expectedTypes[i] in the line in question.

Reviewed-by: alanb
This commit is contained in:
Brian Burkhalter 2017-11-03 10:18:27 -07:00
parent 87eb47a3c8
commit 95c6c8ce11

@ -1,5 +1,5 @@
/*
* Copyright (c) 2008, 2016, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2008, 2017, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -114,7 +114,7 @@ public class Basic {
failures++;
} else if (!type.equals(expectedTypes[i])) {
System.err.printf("Content type: %s; expected: %s%n",
type, expectedTypes);
type, expectedTypes[i]);
failures++;
}
} finally {