use libraries in Arduino Create Editor

Good afternoon! Sorry for bad English)
In my project, I used the library Arduino-LiquidCrystal-I2C-librari and until yesterday everything was compiled well. But yesterday my project started issuing an error when compiling.
How to specify my library for sketch compilation.


Multiple libraries were found for "LiquidCrystal_I2C.h"

Used: /home/admin/builder/opt/libraries/latest/jm_liquidcrystal_i2c-1-0-0 --- I do not need I did not download this library and it is not in my library list
Not used: /tmp/410201973/custom/Arduino-LiquidCrystal-I2C-library - i need
Not used: /home/admin/builder/opt/libraries/latest/liquidcrystal-i2c-1-1-2
How to specify my library for sketch compilation.


Sketch:
#include <Wire.h>
#include <LiquidCrystal_I2C.h>

// Set the LCD address to 0x27 for a 16 chars and 2 line display
LiquidCrystal_I2C lcd(0x27, 16, 2);

void setup()
{
// initialize the LCD
lcd.begin();

// Turn on the blacklight and print a message.
lcd.backlight();
lcd.print("Hello, world!");
}

void loop()
{
// Do nothing here...
}


ERROR LIST

./opt/arduino-builder/arduino-builder -compile -core-api-version 10611 -build-path /tmp/410201973/build -hardware opt/arduino-builder/hardware -hardware ./opt/cores -tools opt/arduino-builder/tools -tools ./opt/tools -built-in-libraries opt/libraries/latest -libraries /tmp/410201973/pinned -libraries /tmp/410201973/custom -fqbn arduino:avr:uno -build-cache /tmp -logger humantags -verbose=false /tmp/410201973/HelloWorld

Multiple libraries were found for "LiquidCrystal_I2C.h"
Used: /home/admin/builder/opt/libraries/latest/jm_liquidcrystal_i2c-1-0-0
Not used: /tmp/410201973/custom/Arduino-LiquidCrystal-I2C-library
Not used: /home/admin/builder/opt/libraries/latest/liquidcrystal-i2c-1-1-2
/tmp/410201973/HelloWorld/HelloWorld.ino: In function 'void setup()':
/tmp/410201973/HelloWorld/HelloWorld.ino:10:12: error: no matching function for call to 'LiquidCrystal_I2C::begin()'
lcd.begin();
^
/tmp/410201973/HelloWorld/HelloWorld.ino:10:12: note: candidate is:

In file included from /tmp/410201973/HelloWorld/HelloWorld.ino:2:0:

/home/admin/builder/opt/libraries/latest/jm_liquidcrystal_i2c-1-0-0/LiquidCrystal_I2C.h:112:15: note: virtual void LiquidCrystal_I2C::begin(uint8_t, uint8_t, uint8_t)

virtual void begin(uint8_t cols, uint8_t rows, uint8_t charsize = LCD_5x8DOTS);

^

/home/admin/builder/opt/libraries/latest/jm_liquidcrystal_i2c-1-0-0/LiquidCrystal_I2C.h:112:15: note: candidate expects 3 arguments, 0 provided

exit status 1

Arduino-LiquidCrystal-I2C-library.zip (18.3 KB)