Skip to content

Commit

Permalink
Добавлен параметр в конструктор для Browser#Browser()
Browse files Browse the repository at this point in the history
  • Loading branch information
kalenchukov committed Oct 15, 2022
1 parent d003b48 commit 0c24152
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions src/main/java/dev/kalenchukov/useragent/parsing/Browser.java
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,14 @@ public final class Browser
@NotNull
private BrowserType browser;

/**
* Список регулярных выражений для определения типа браузера.
*
* @see #getRegExpBrowsers()
*/
@NotNull
private final Map<@NotNull String, @NotNull BrowserType> regExpBrowsers;

/**
* Конструктор для {@code Browser}.
*/
Expand All @@ -65,16 +73,9 @@ public Browser()
this.userAgent = null;
this.version = null;
this.browser = BrowserType.UNKNOWN;
this.regExpBrowsers = this.getRegExpBrowsers();
}

/**
* Список регулярных выражений для определения типа браузера.
*
* @see #getRegExpBrowsers()
*/
@NotNull
private final Map<@NotNull String, @NotNull BrowserType> regExpBrowsers = this.getRegExpBrowsers();

/**
* Возвращает названия всех браузеров.
*
Expand Down

0 comments on commit 0c24152

Please sign in to comment.