Skip to content

Commit

Permalink
Update version to 0.1.10; fix compatibility problems
Browse files Browse the repository at this point in the history
  • Loading branch information
Saigut committed Jun 26, 2022
1 parent f4cb87a commit d0314bd
Show file tree
Hide file tree
Showing 7 changed files with 42 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/main/psi/impl/SchemeFormDefineBase.java
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,12 @@ public Icon getIcon(boolean open)
{
return getMe().getIcon(Iconable.ICON_FLAG_VISIBILITY | Iconable.ICON_FLAG_READ_STATUS);
}

@Nullable
public String getLocationString()
{
return null;
}
};
}

Expand Down
6 changes: 6 additions & 0 deletions src/main/psi/impl/SchemeFormExport.java
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,12 @@ public Icon getIcon(boolean open)
{
return getMe().getIcon(Iconable.ICON_FLAG_VISIBILITY | Iconable.ICON_FLAG_READ_STATUS);
}

@Nullable
public String getLocationString()
{
return null;
}
};
}

Expand Down
6 changes: 6 additions & 0 deletions src/main/psi/impl/SchemeFormLibrary.java
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,12 @@ public Icon getIcon(boolean open)
{
return getMe().getIcon(Iconable.ICON_FLAG_VISIBILITY | Iconable.ICON_FLAG_READ_STATUS);
}

@Nullable
public String getLocationString()
{
return null;
}
};
}

Expand Down
6 changes: 6 additions & 0 deletions src/main/psi/impl/SchemeInFormParamList.java
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,12 @@ public Icon getIcon(boolean open)
{
return getMe().getIcon(Iconable.ICON_FLAG_VISIBILITY | Iconable.ICON_FLAG_READ_STATUS);
}

@Nullable
public String getLocationString()
{
return null;
}
};
}

Expand Down
6 changes: 6 additions & 0 deletions src/main/psi/impl/SchemeSymbol.java
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,12 @@ public Icon getIcon(boolean open)
{
return SchemeSymbol.this.getIcon(Iconable.ICON_FLAG_VISIBILITY | Iconable.ICON_FLAG_READ_STATUS);
}

@Nullable
public String getLocationString()
{
return null;
}
};
}

Expand Down
6 changes: 6 additions & 0 deletions src/main/psi/impl/SchemeSymbolDefine.java
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,12 @@ public Icon getIcon(boolean open)
{
return SchemeSymbolDefine.this.getIcon(Iconable.ICON_FLAG_VISIBILITY | Iconable.ICON_FLAG_READ_STATUS);
}

@Nullable
public String getLocationString()
{
return null;
}
};
}

Expand Down
6 changes: 6 additions & 0 deletions src/main/psi/impl/SchemeUnrecognizedForm.java
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,12 @@ public Icon getIcon(boolean open)
{
return getMe().getIcon(Iconable.ICON_FLAG_VISIBILITY | Iconable.ICON_FLAG_READ_STATUS);
}

@Nullable
public String getLocationString()
{
return null;
}
};
}

Expand Down

0 comments on commit d0314bd

Please sign in to comment.