How to split a line of code into several lines without breaking it into new lines in Android Studio?

Example:

// TODO: @blocked - Search function blocked until backend implements 
// string to ID conversion. 
// Without it the client must know the id of a store/country/region 
// which is not feasible.

Only the first line will be registered as TODO , and the following will be registered as regular comments.

Is there a way to continue a line of code in the next line without breaking it?

+4
source share

Source: https://habr.com/ru/post/1691184/


All Articles