Skip to content

Commit

Permalink
Remove "empty" function CclGetDependency.
Browse files Browse the repository at this point in the history
  • Loading branch information
Jarod42 committed Oct 23, 2023
1 parent 9881580 commit a8c89eb
Showing 1 changed file with 0 additions and 15 deletions.
15 changes: 0 additions & 15 deletions src/unit/depend.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -318,20 +318,6 @@ static int CclDefineDependency(lua_State *l)
return 0;
}

/**
** Get the dependency.
**
** @todo not written.
**
** @param l Lua state.
*/
static int CclGetDependency(lua_State *l)
{
DebugPrint("FIXME: write this %p\n", (void *)l);

return 0;
}

/**
** Checks if dependencies are met.
**
Expand Down Expand Up @@ -361,7 +347,6 @@ static int CclCheckDependency(lua_State *l)
void DependenciesCclRegister()
{
lua_register(Lua, "DefineDependency", CclDefineDependency);
lua_register(Lua, "GetDependency", CclGetDependency);
lua_register(Lua, "CheckDependency", CclCheckDependency);
}

Expand Down

0 comments on commit a8c89eb

Please sign in to comment.