Update years in copyright line
[Sone.git] / src / main / java / net / pterodactylus / sone / data / impl / AlbumBuilderImpl.java
index 3403a62..72ae5a5 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Sone - MemoryAlbumBuilder.java - Copyright © 2013 David Roden
+ * Sone - AlbumBuilderImpl.java - Copyright © 2013–2015 David Roden
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -18,7 +18,6 @@
 package net.pterodactylus.sone.data.impl;
 
 import net.pterodactylus.sone.data.Album;
-import net.pterodactylus.sone.data.AlbumImpl;
 import net.pterodactylus.sone.database.AlbumBuilder;
 
 /**
@@ -31,7 +30,7 @@ public class AlbumBuilderImpl extends AbstractAlbumBuilder {
        @Override
        public Album build() throws IllegalStateException {
                validate();
-               return randomId ? new AlbumImpl() : new AlbumImpl(id);
+               return randomId ? new AlbumImpl(sone) : new AlbumImpl(sone, id);
        }
 
 }