Giter Club home page Giter Club logo

wordrepeater's People

Contributors

spaceface16518 avatar

Watchers

James Cloos avatar  avatar

wordrepeater's Issues

Dynamic buffer's write method is using "capture"

Describe the bug
Dynamic buffer test is failing because the Dynamic Buffer's write function's parameter elements is typed as java.util.List<? extends capture#1 of ?>.

To Reproduce
Steps to reproduce the behavior:

  1. Go to com.repeater.util.DynamicBufferTest.java
  2. Un-comment line 60 and compile
    If the nothing is there, fill it in with this text:
buffer.write(sample);
  1. The error should read something like this
Error:(60, 22) java: incompatible types: java.util.List<java.lang.String> cannot be converted to java.util.List<? extends capture#1 of ?>

Expected behavior
The statement should not throw an error. It should instead write to the output stream.

The parameter should be typed as java.util.List<java.lang.String> for example:

public synchronized void write(List<? extends T> elements)
        throws IOException {
    int sizeAfterPush = elements.size() + buffer.size();
    if (sizeAfterPush >= limit && sizeAfterPush >= minLimit) flush();
    respaceBuffer();
    buffer.addAll(elements);
    if (limit <= buffer.size()) respaceBuffer();
}
buffer.write(sample);

In this example, sample is a predetermined List made with this method:

private synchronized static List<String> getRand() {
    ArrayList<String> builder = new ArrayList<>();
    Random rand = new Random();
    for (int i = 0; i < 50; i++)
        builder.add(String.valueOf(rand.nextDouble() * 15));
return builder;
}
// On initialization of the test
sample = getRand();

Desktop (please complete the following information):

  • OS: MacOS
  • IDE: JetBrain's Intellij IDEA
  • Circa Commit: 7124924

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.