--- old/src/jdk.jcmd/share/classes/sun/tools/jstat/RowClosure.java 2018-03-22 19:27:39.306459365 +0900 +++ new/src/jdk.jcmd/share/classes/sun/tools/jstat/RowClosure.java 2018-03-22 19:27:38.979458566 +0900 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2004, 2013, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2004, 2018, 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 @@ -54,7 +54,7 @@ Expression e = c.getExpression(); ExpressionEvaluator ee = new ExpressionExecuter(vm); - Object value = ee.evaluate(e); + Object value = ee.evaluate(e, c.isForcibly()); if (value instanceof String) { s = (String)value;