📄 Update year in file headers
[Sone.git] / src / main / java / net / pterodactylus / sone / data / impl / AlbumBuilderImpl.java
index 3403a62..696d08d 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Sone - MemoryAlbumBuilder.java - Copyright Â© 2013 David Roden
+ * Sone - AlbumBuilderImpl.java - Copyright Â© 2013–2020 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
 package net.pterodactylus.sone.data.impl;
 
 import net.pterodactylus.sone.data.Album;
-import net.pterodactylus.sone.data.AlbumImpl;
 import net.pterodactylus.sone.database.AlbumBuilder;
 
 /**
  * {@link AlbumBuilder} implementation that creates {@link AlbumImpl} objects.
- *
- * @author <a href="mailto:bombe@pterodactylus.net">David â€˜Bombe’ Roden</a>
  */
 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);
        }
 
 }