Skip to content

Possible wrong import from guava #5

@BB46

Description

@BB46

스프링부트 2.x에 사용된 TestPropertyValues는 guava에서 사용되는 클래스입니다.

import com.google.common.collect.Streams;

public static TestPropertyValues of(Iterable<String> pairs) {
		if (pairs == null) {
			return empty();
		}
		return of(Streams.stream(pairs));
	}

jdk에서 다른 클래스를 사용하려 했던 것 같습니다만, guava 클래스를 사용하지 않도록 설정해야 합니다.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions