Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -595,18 +595,7 @@ public void onOptionsMenuClick(String tag) {
}

public String getHelpUrl(String tag, SpriteActivity activity) {
String language = getLanguage(activity);
switch (tag) {
case FUNCTION_TAG:
return Constants.CATROBAT_FUNCTIONS_WIKI_URL + language;
case LOGIC_TAG:
return Constants.CATROBAT_LOGIC_WIKI_URL + language;
case OBJECT_TAG:
return Constants.CATROBAT_OBJECT_WIKI_URL + language;
case SENSOR_TAG:
return Constants.CATROBAT_SENSORS_WIKI_URL + language;
}
return null;
return "https://catrobat.org/docs/brickdocumentation/";
}

private static SharedPreferences getSharedPreferences(Context context) {
Expand Down