You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If we add a space in the method return type (space between , and Object here). The space breaks the documentation. the return type in the Markdown file only contains Object>
public staticMap<String, Object>getActiveSurveySettings(String surveyType){ ... }
If we remove the space it works as expected.
public staticMap<String,Object>getActiveSurveySettings(String surveyType){ ... }
The text was updated successfully, but these errors were encountered:
If we add a space in the method return type (space between
,
andObject
here). The space breaks the documentation. the return type in the Markdown file only containsObject>
public static
Map<String, Object>getActiveSurveySettings(String surveyType){ ... }
If we remove the space it works as expected.
public static
Map<String,Object>getActiveSurveySettings(String surveyType){ ... }
The text was updated successfully, but these errors were encountered: