JCLOUDS-546: Remove Javadoc @author annotations

Annotations removed with:

find -name \*.java | xargs sed -i /@author/d

Empty Javadoc removed with multiple iterations of:

find -name \*.java | xargs sed -i -z 's/ \*\n \*\// \*\//'
find -name \*.java | xargs sed -i -z 's/ \* \n \*\// \*\//'
find -name \*.java | xargs sed -i -z 's/\/\*\*\n \*\/\n//'
This commit is contained in:
Andrew Gaul 2014-06-06 22:25:04 -07:00
parent bd36ccd551
commit b9b6f39d42
13 changed files with 0 additions and 26 deletions

View File

@ -47,8 +47,6 @@ import org.jclouds.rest.annotations.WrapWith;
/** /**
* Provides synchronous access to the Enterprise Chef Api. * Provides synchronous access to the Enterprise Chef Api.
*
* @author Ignasi Barrera
*/ */
@RequestFilters(SignedHeaderAuth.class) @RequestFilters(SignedHeaderAuth.class)
@Consumes(MediaType.APPLICATION_JSON) @Consumes(MediaType.APPLICATION_JSON)

View File

@ -32,8 +32,6 @@ import com.google.inject.Module;
/** /**
* Implementation of {@link ApiMetadata} for the Enterprise Chef api. * Implementation of {@link ApiMetadata} for the Enterprise Chef api.
*
* @author Adrian Cole
*/ */
public class EnterpriseChefApiMetadata extends BaseHttpApiMetadata<EnterpriseChefApi> { public class EnterpriseChefApiMetadata extends BaseHttpApiMetadata<EnterpriseChefApi> {

View File

@ -24,8 +24,6 @@ import org.jclouds.providers.internal.BaseProviderMetadata;
/** /**
* Implementation of @ link org.jclouds.types.ProviderMetadata} for Enterprise Chef * Implementation of @ link org.jclouds.types.ProviderMetadata} for Enterprise Chef
*
* @author Adrian Cole
*/ */
public class EnterpriseChefProviderMetadata extends BaseProviderMetadata public class EnterpriseChefProviderMetadata extends BaseProviderMetadata
{ {

View File

@ -32,8 +32,6 @@ import org.jclouds.rest.binders.BindToJsonPayload;
/** /**
* Binds a group to the payload expected for the Put method in the Enterprise Chef * Binds a group to the payload expected for the Put method in the Enterprise Chef
* Api. * Api.
*
* @author Ignasi Barrera
*/ */
@Singleton @Singleton
public class BindGroupToUpdateRequestJsonPayload extends BindToJsonPayload { public class BindGroupToUpdateRequestJsonPayload extends BindToJsonPayload {

View File

@ -26,8 +26,6 @@ import com.google.common.base.Function;
/** /**
* Gets the name of a group. * Gets the name of a group.
*
* @author Ignasi Barrera
*/ */
@Singleton @Singleton
public class GroupName implements Function<Object, String> { public class GroupName implements Function<Object, String> {

View File

@ -23,8 +23,6 @@ import org.jclouds.rest.ConfiguresHttpApi;
/** /**
* Configures the Enterprise Chef connection. * Configures the Enterprise Chef connection.
*
* @author Ignasi Barrera
*/ */
@ConfiguresHttpApi @ConfiguresHttpApi
public class EnterpriseChefHttpApiModule extends BaseChefHttpApiModule<EnterpriseChefApi> { public class EnterpriseChefHttpApiModule extends BaseChefHttpApiModule<EnterpriseChefApi> {

View File

@ -28,8 +28,6 @@ import com.google.common.collect.ImmutableSet;
/** /**
* Group object. * Group object.
*
* @author Ignasi Barrera
*/ */
public class Group { public class Group {
public static Builder builder(String groupname) { public static Builder builder(String groupname) {

View File

@ -25,8 +25,6 @@ import com.google.gson.annotations.SerializedName;
/** /**
* User object. * User object.
*
* @author Ignasi Barrera
*/ */
public class User { public class User {
public static Builder builder() { public static Builder builder() {

View File

@ -42,8 +42,6 @@ import com.google.inject.Module;
/** /**
* Expect tests for the {@link EnterpriseChefApi} class. * Expect tests for the {@link EnterpriseChefApi} class.
*
* @author Ignasi Barrera
*/ */
@Test(groups = "unit", testName = "EnterpriseChefApiExpectTest") @Test(groups = "unit", testName = "EnterpriseChefApiExpectTest")
public class EnterpriseChefApiExpectTest extends BaseChefApiExpectTest<EnterpriseChefApi> { public class EnterpriseChefApiExpectTest extends BaseChefApiExpectTest<EnterpriseChefApi> {

View File

@ -33,8 +33,6 @@ import org.testng.annotations.Test;
/** /**
* Tests behavior of the EnterpriseChefApi. * Tests behavior of the EnterpriseChefApi.
*
* @author Adrian Cole
*/ */
@Test(groups = "live", singleThreaded = true, testName = "EnterpriseChefApiLiveTest") @Test(groups = "live", singleThreaded = true, testName = "EnterpriseChefApiLiveTest")
public class EnterpriseChefApiLiveTest extends BaseChefApiLiveTest<EnterpriseChefApi> { public class EnterpriseChefApiLiveTest extends BaseChefApiLiveTest<EnterpriseChefApi> {

View File

@ -21,8 +21,6 @@ import org.testng.annotations.Test;
/** /**
* Unit tests for the {@link EnterpriseChefProviderMetadata} class. * Unit tests for the {@link EnterpriseChefProviderMetadata} class.
*
* @author Adrian Cole
*/ */
@Test(groups = "unit", testName = "EnterpriseChefProviderTest") @Test(groups = "unit", testName = "EnterpriseChefProviderTest")
public class EnterpriseChefProviderMetadataTest extends BaseProviderMetadataTest { public class EnterpriseChefProviderMetadataTest extends BaseProviderMetadataTest {

View File

@ -36,8 +36,6 @@ import com.google.inject.Injector;
/** /**
* Unit tests for the {@link BindGroupToUpdateRequestJsonPayload} class. * Unit tests for the {@link BindGroupToUpdateRequestJsonPayload} class.
*
* @author Ignasi Barrera
*/ */
@Test(groups = "unit", testName = "BindGroupToUpdateRequestJsonPayloadTest") @Test(groups = "unit", testName = "BindGroupToUpdateRequestJsonPayloadTest")
public class BindGroupToUpdateRequestJsonPayloadTest { public class BindGroupToUpdateRequestJsonPayloadTest {

View File

@ -25,8 +25,6 @@ import org.testng.annotations.Test;
/** /**
* Unit tests for the {@link GroupName} class. * Unit tests for the {@link GroupName} class.
*
* @author Ignasi Barrera
*/ */
@Test(groups = "unit", testName = "GroupNameTest") @Test(groups = "unit", testName = "GroupNameTest")
public class GroupNameTest { public class GroupNameTest {