Skip to content

Commit 1455512

Browse files
committed
Enable Schema handeling
1 parent ffcc19c commit 1455512

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

app/src/processing/app/Base.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1364,10 +1364,10 @@ private File moveLikeSketchFolder(File pdeFile, String baseName) throws IOExcept
13641364
* @param schemeUri the full URI, including pde://
13651365
*/
13661366
public Editor handleScheme(String schemeUri) {
1367-
// var result = Schema.handleSchema(schemeUri, this);
1368-
// if (result != null) {
1369-
// return result;
1370-
// }
1367+
var result = Schema.handleSchema(schemeUri, this);
1368+
if (result != null) {
1369+
return result;
1370+
}
13711371

13721372
String location = schemeUri.substring(6);
13731373
if (location.length() > 0) {

0 commit comments

Comments
 (0)