=== modified file 'src/com/goldencode/compile/InMemoryClass.java'
--- old/src/com/goldencode/compile/InMemoryClass.java	2012-08-27 15:24:49 +0000
+++ new/src/com/goldencode/compile/InMemoryClass.java	2025-03-31 11:05:21 +0000
@@ -2,10 +2,11 @@
 ** Module   : InMemoryClass.java
 ** Abstract : in-memory class file
 **
-** Copyright (c) 2009, Golden Code Development Corporation.
+** Copyright (c) 2009-2025, Golden Code Development Corporation.
 **
 ** -#- -I- --Date-- -----------------------Description------------------------
 ** 001 GES 20090302 Provides an in-memory class file.
+** 002 TJD 20250331 Fix for incorrect class URI under Windows
 */
 
 /*
@@ -52,7 +53,7 @@
    public InMemoryClass(String name)
    {
       super(URI.create("string:///"                           +
-                       name.replaceAll("\\.", File.separator) +
+                       name.replaceAll("\\.", "/") +
                        Kind.CLASS.extension),
                        Kind.CLASS);
    }

=== modified file 'src/com/goldencode/compile/InMemorySourceCode.java'
--- old/src/com/goldencode/compile/InMemorySourceCode.java	2012-08-27 15:24:49 +0000
+++ new/src/com/goldencode/compile/InMemorySourceCode.java	2025-03-31 11:05:36 +0000
@@ -2,10 +2,11 @@
 ** Module   : InMemorySourceCode.java
 ** Abstract : in-memory Java source code
 **
-** Copyright (c) 2009, Golden Code Development Corporation.
+** Copyright (c) 2009-2025, Golden Code Development Corporation.
 **
 ** -#- -I- --Date-- -----------------------Description------------------------
 ** 001 GES 20090303 Provides in-memory Java source code.
+** 002 TJD 20250331 Fix for bad source URI under Windows
 */
 
 /*
@@ -57,7 +58,7 @@
    public InMemorySourceCode(String name, String source)
    {
       super(URI.create("string:///"                           +
-                       name.replaceAll("\\.", File.separator) +
+                       name.replaceAll("\\.", "/") +
                        Kind.SOURCE.extension),
                        Kind.SOURCE);
       this.source = source;

