mirror of
				https://gitlab.com/comunic/comunicmobile
				synced 2025-11-04 04:04:18 +00:00 
			
		
		
		
	Fix all warnings
This commit is contained in:
		@@ -58,9 +58,9 @@ class BBCodeParsedWidget extends StatelessWidget {
 | 
			
		||||
    int? lastBeginPos = pos;
 | 
			
		||||
    int childNumber = 0;
 | 
			
		||||
    bool stop = false;
 | 
			
		||||
    while (!stop && pos! < text.length) {
 | 
			
		||||
    while (!stop && pos < text.length) {
 | 
			
		||||
      //Go to next stop
 | 
			
		||||
      while (!stop && pos! < text.length) {
 | 
			
		||||
      while (!stop && pos < text.length) {
 | 
			
		||||
        if (text[pos] == '[') break;
 | 
			
		||||
        pos++;
 | 
			
		||||
      }
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user