Skip to content

Commit 59807af

Browse files
committed
Fix some formatting
1 parent e2a26a9 commit 59807af

File tree

11 files changed

+541
-573
lines changed

11 files changed

+541
-573
lines changed

src/TagLib/Asf/Tag.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -229,8 +229,8 @@ public string [] GetDescriptorStrings (params string [] names)
229229
/// The value will be stored in the first value in <paramref
230230
/// name="names" /> and the rest will be cleared.
231231
/// </remarks>
232-
public void SetDescriptorString (string value,
233-
params string [] names)
232+
public void SetDescriptorString (string value,
233+
params string [] names)
234234
{
235235
if (names == null)
236236
throw new ArgumentNullException ("names");
@@ -268,8 +268,8 @@ public void SetDescriptorString (string value,
268268
/// The value will be stored in the first value in <paramref
269269
/// name="names" /> and the rest will be cleared.
270270
/// </remarks>
271-
public void SetDescriptorStrings (string [] value,
272-
params string [] names)
271+
public void SetDescriptorStrings (string [] value,
272+
params string [] names)
273273
{
274274
if (names == null)
275275
throw new ArgumentNullException ("names");

src/TagLib/CombinedTag.cs

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1288,10 +1288,8 @@ public override string MusicBrainzArtistId {
12881288
/// tag.</para>
12891289
/// </remarks>
12901290
/// <seealso cref="Tag.MusicBrainzReleaseGroupId" />
1291-
public override string MusicBrainzReleaseGroupId
1292-
{
1293-
get
1294-
{
1291+
public override string MusicBrainzReleaseGroupId {
1292+
get {
12951293
foreach (Tag tag in tags)
12961294
{
12971295
if (tag == null)
@@ -1306,8 +1304,7 @@ public override string MusicBrainzReleaseGroupId
13061304
return null;
13071305
}
13081306

1309-
set
1310-
{
1307+
set {
13111308
foreach (Tag tag in tags)
13121309
if (tag != null)
13131310
tag.MusicBrainzReleaseGroupId = value;

src/TagLib/Id3v2/Tag.cs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -457,8 +457,8 @@ public void RemoveFrames (ByteVector ident)
457457
/// <exception cref="ArgumentException">
458458
/// <paramref name="ident" /> is not exactly four bytes long.
459459
/// </exception>
460-
public void SetTextFrame (ByteVector ident,
461-
params string [] text)
460+
public void SetTextFrame (ByteVector ident,
461+
params string [] text)
462462
{
463463
if (ident == null)
464464
throw new ArgumentNullException ("ident");
@@ -517,8 +517,8 @@ public void SetTextFrame (ByteVector ident,
517517
/// <paramref name="ident" /> is not exactly four bytes long.
518518
/// </exception>
519519
[Obsolete("Use SetTextFrame(ByteVector,String[])")]
520-
public void SetTextFrame (ByteVector ident,
521-
StringCollection text)
520+
public void SetTextFrame (ByteVector ident,
521+
StringCollection text)
522522
{
523523
if (text == null || text.Count == 0)
524524
RemoveFrames (ident);
@@ -562,8 +562,8 @@ public void SetTextFrame (ByteVector ident,
562562
/// <exception cref="ArgumentException">
563563
/// <paramref name="ident" /> is not exactly four bytes long.
564564
/// </exception>
565-
public void SetNumberFrame (ByteVector ident, uint number,
566-
uint count, string format = "0")
565+
public void SetNumberFrame (ByteVector ident, uint number,
566+
uint count, string format = "0")
567567
{
568568
if (ident == null)
569569
throw new ArgumentNullException ("ident");

src/TagLib/Mpeg4/AppleTag.cs

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -179,8 +179,7 @@ public IEnumerable<AppleDataBox> DataBoxes (params ByteVector [] types)
179179
/// A <see cref="T:System.Collections.Generic.IEnumerable`1" /> object enumerating the
180180
/// matching boxes.
181181
/// </returns>
182-
public IEnumerable<AppleDataBox> DataBoxes (string mean,
183-
string name)
182+
public IEnumerable<AppleDataBox> DataBoxes (string mean, string name)
184183
{
185184
// These children will have a box type of "----"
186185
foreach (Box box in ilst_box.Children) {
@@ -300,8 +299,8 @@ public void SetData (ByteVector type, AppleDataBox [] boxes)
300299
/// A <see cref="uint" /> value containing flags to use for
301300
/// the added boxes.
302301
/// </param>
303-
public void SetData (ByteVector type, ByteVectorCollection data,
304-
uint flags)
302+
public void SetData (ByteVector type, ByteVectorCollection data,
303+
uint flags)
305304
{
306305
if (data == null || data.Count == 0) {
307306
ClearData (type);
@@ -331,8 +330,7 @@ public void SetData (ByteVector type, ByteVectorCollection data,
331330
/// A <see cref="uint" /> value containing flags to use for
332331
/// the added box.
333332
/// </param>
334-
public void SetData (ByteVector type, ByteVector data,
335-
uint flags)
333+
public void SetData (ByteVector type, ByteVector data, uint flags)
336334
{
337335
if (data == null || data.Count == 0)
338336
ClearData (type);

0 commit comments

Comments
 (0)