Skip to content

Commit

Permalink
CI Cleanup ppy#2
Browse files Browse the repository at this point in the history
  • Loading branch information
default0 committed Aug 19, 2017
1 parent 4a124d9 commit 9132bd2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ internal override IEnumerable<SpriteText> AddLine(TextLine line, bool newLineIsP
AddInternal(new NewLineContainer(newLineIsParagraph));
}

foreach (string word in splitWords(l))
foreach (string word in SplitWords(l))
{
if (string.IsNullOrEmpty(word)) continue;

Expand Down
4 changes: 2 additions & 2 deletions osu.Framework/Graphics/Containers/TextFlowContainer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ internal virtual IEnumerable<SpriteText> AddLine(TextLine line, bool newLineIsPa
base.Add(new NewLineContainer(newLineIsParagraph));
}

foreach (string word in splitWords(l))
foreach (string word in SplitWords(l))
{
if (string.IsNullOrEmpty(word)) continue;

Expand All @@ -200,7 +200,7 @@ internal virtual IEnumerable<SpriteText> AddLine(TextLine line, bool newLineIsPa
return sprites;
}

protected string[] splitWords(string text)
protected string[] SplitWords(string text)
{
var words = new List<string>();
var builder = new StringBuilder();
Expand Down

0 comments on commit 9132bd2

Please sign in to comment.