Skip to content

Commit

Permalink
use latest manifold release
Browse files Browse the repository at this point in the history
  • Loading branch information
rsmckinney committed Nov 9, 2022
1 parent 094832d commit 0d428fa
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@
#

version=2022.3.22
manifoldVersion=2022.1.22-SNAPSHOT
manifoldVersion=2022.1.23-SNAPSHOT
org.gradle.jvmargs=-Dfile.encoding=UTF-8
defaultIjVersion=LATEST-EAP-SNAPSHOT
5 changes: 5 additions & 0 deletions src/main/java/manifold/ij/core/ManPsiTupleExpressionImpl.java
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,11 @@ public ManPsiTupleExpressionImpl()
return null;
}

if( ManProject.getModule( this ) == null )
{
return null;
}

String pkg = ManClassUtil.getPackage( topLevelClass.getQualifiedName() );
String tupleTypeName = ManPsiUtil.runInTypeManifoldLoader( this,
() -> ITupleTypeProvider.INSTANCE.get().makeType( pkg, makeTupleFieldMap() ) );
Expand Down

0 comments on commit 0d428fa

Please sign in to comment.