Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[IOTDB-493] Remove author tags from source code #815

Merged
merged 1 commit into from
Feb 17, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@
* One example for reading TsFile with MapReduce.
* This MR Job is used to get the result of sum("device_1.sensor_3") in the tsfile.
* The source of tsfile can be generated by <code>TsFileHelper</code>.
* @author Yuan Tian
*/
public class TSFMRReadExample {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@

/**
* One example for writing TsFile with MapReduce.
* @author Yuan Tian
*/
public class TSMRWriteExample {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,6 @@
import java.util.List;
import java.util.stream.Collectors;

/**
* @author Yuan Tian
*/
public class
TSFInputFormat extends FileInputFormat<NullWritable, MapWritable> {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,6 @@
import java.io.IOException;
import java.util.Objects;

/**
* @author Yuan Tian
*/
public class TSFOutputFormat extends FileOutputFormat<NullWritable, HDFSTSRecord> {

private static final Logger logger = LoggerFactory.getLogger(TSFOutputFormat.class);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,6 @@
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

/**
* @author Yuan Tian
*/
public class TSFRecordReader extends RecordReader<NullWritable, MapWritable> implements IReaderSet {

private static final Logger logger = LoggerFactory.getLogger(TSFRecordReader.class);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,6 @@
import java.util.ArrayList;
import java.util.List;

/**
* @author Yuan Tian
*/
public class HDFSTSRecord implements Writable {


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,6 @@
/**
* Test the {@link TSFInputSplit}
* Assert the readFields function and write function is right
*
* @author Yuan Tian
*/
public class TSFInputSplitTest {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,6 @@

import static org.junit.Assert.*;

/**
* @author Yuan Tian
*/
public class TsFileDeserializerTest {

private TsFileDeserializer tsFileDeserializer;
Expand Down