Skip to content

Commit 4d981dc

Browse files
committed
svm: move VMError to com.oracle.svm.shared.util
1 parent 6dbf750 commit 4d981dc

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • substratevm/src/com.oracle.svm.shared/src/com/oracle/svm/shared/util

substratevm/src/com.oracle.svm.core/src/com/oracle/svm/core/util/VMError.java renamed to substratevm/src/com.oracle.svm.shared/src/com/oracle/svm/shared/util/VMError.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
* or visit www.oracle.com if you need additional information or have any
2323
* questions.
2424
*/
25-
package com.oracle.svm.core.util;
25+
package com.oracle.svm.shared.util;
2626

2727
import org.graalvm.nativeimage.Platform;
2828
import org.graalvm.nativeimage.Platforms;
@@ -225,7 +225,7 @@ public static RuntimeException unsupportedFeature(String msg) {
225225
* @param args arguments to process
226226
* @return a copy of {@code args} with certain values converted to strings as described above
227227
*/
228-
static Object[] formatArguments(Object... args) {
228+
public static Object[] formatArguments(Object... args) {
229229
Object[] newArgs = new Object[args.length];
230230
for (int i = 0; i < args.length; i++) {
231231
Object arg = args[i];

0 commit comments

Comments
 (0)