Skip to content

Commit

Permalink
refactor: отработка по checkstyle
Browse files Browse the repository at this point in the history
  • Loading branch information
xlam committed Dec 12, 2018
1 parent 3e9b5e8 commit 3ac94ce
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions src/main/java/ru/cyberbiology/BotFrame.java
Original file line number Diff line number Diff line change
Expand Up @@ -283,12 +283,12 @@ public void update() {
String[] history = bot.genesHistory.toStringArray();
// TODO это не годится, нужно переделать!
jlGenesHistory.setListData(Stream.of(history)
.map(g -> {
BotGeneController cont = bot.getGeneControllerForCommand(Integer.parseInt(g));
return g + " [" + ((cont == null) ? "не назначено" : cont.getDescription()) + "]";
})
.toArray(String[]::new)
);
.map(g -> {
BotGeneController cont = bot.getGeneControllerForCommand(Integer.parseInt(g));
return g + " [" + ((cont == null) ? "не назначено" : cont.getDescription()) + "]";
})
.toArray(String[]::new)
);
String[] program = MiscUtils.getProgram(history);
if (program != null) {
jlProgram.setListData(program);
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/ru/cyberbiology/util/MiscUtils.java
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ public class MiscUtils {

/**
* Ищет последовательность команд, выполненную два или более раза подряд.
* <p>
* Найденная последовательность представляет собой текущую программу бота.
*
* <p>Найденная последовательность представляет собой текущую программу бота.
*
* @param history история выполненных генов
* @return найденная программа, или null
Expand Down

0 comments on commit 3ac94ce

Please sign in to comment.