Showing with 3 additions and 1 deletion.
  1. +1 −1 build.gradle
  2. +2 −0 src/main/java/net/kyori/membrane/facet/internal/Facets.java
@@ -6,7 +6,7 @@ plugins {
}

group 'net.kyori'
version '1.0.0'
version '1.0.1-SNAPSHOT'

sourceCompatibility = 1.8
targetCompatibility = 1.8
@@ -23,6 +23,7 @@
*/
package net.kyori.membrane.facet.internal;

import com.google.inject.ImplementedBy;
import net.kyori.membrane.facet.Facet;

import java.util.stream.Stream;
@@ -32,6 +33,7 @@
/**
* A collection of facets.
*/
@ImplementedBy(FacetsImpl.class)
public interface Facets {

/**