douglascraigschmidt / LiveLessons

This repository contains all the source code examples from my LiveLessons course on "Java Concurrent Programming" and my various LiveTraining courses, as described at http://www.dre.vanderbilt.edu/~schmidt/DigitalLearning.
596 stars 665 forks source link

import sun.plugin.liveconnect.SecurityContextHelper; #8

Closed americanstone closed 6 years ago

americanstone commented 6 years ago

not able to find this class in the project. so it's not able to compile the project at all. since it's not referenced anywhere I removed it and it starts working.

douglascraigschmidt commented 6 years ago

Which project are you referring to? Thanks, Doug

americanstone commented 6 years ago

Hey, it is LiveLessons SearchStreamGang project. Supposing I have to download java-plugin*.jar file for this project? ~/Projects/LiveLessons/SearchStreamGang (master) 🍺 $git diff diff --git a/SearchStreamGang/src/main/java/livelessons/streamgangs/SearchWithRxJavaInputs.java b/SearchStreamGang/src/main/java/livelessons/streamgangs/SearchWithRxJavaInputs.java index 6e5ea0a..96e88fa 100644 --- a/SearchStreamGang/src/main/java/livelessons/streamgangs/SearchWithRxJavaInputs.java +++ b/SearchStreamGang/src/main/java/livelessons/streamgangs/SearchWithRxJavaInputs.java @@ -1,6 +1,6 @@ package livelessons.streamgangs;

-import sun.plugin.liveconnect.SecurityContextHelper; +//import sun.plugin.liveconnect.SecurityContextHelper;

import java.util.ArrayList; import java.util.Iterator;

douglascraigschmidt commented 6 years ago

Thanks - I've applied this fix and pushed it to github!

Doug